Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cD0yMDI1LTA4LTEwKzE0JTNBMzUlM0E1Ny45NDkyNDclMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTA5KzE1JTNBNDMlM0EzOS44MzA0ODAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xMCsxNCUzQTMwJTNBMDMuMzkzMjk5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-10T14:30:03.393299Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aylu/3.embed",
            "fid": "aylu:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/aylu:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/aylu:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aylu/3/8_CTNRSEY43G808RZKJHNE65JUAB9RHG.png",
                "list-thumb": "https://api.plotly.com/v2/files/aylu:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aylu:3",
                "plots": "https://api.plotly.com/v2/plots/aylu:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=aylu"
            },
            "owner": "aylu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~aylu/3/",
            "world_readable": true,
            "date_modified": "2025-08-10T14:31:38.688Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aylu/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "step",
                                "y": "losses/train.total_loss"
                            }
                        },
                        "mode": "lines",
                        "name": "Synthetic",
                        "type": "scatter",
                        "xsrc": "aylu:1:ddbf9f",
                        "ysrc": "aylu:1:d096c7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "step",
                                "y": "losses/train.total_loss"
                            }
                        },
                        "mode": "lines",
                        "name": "Real ",
                        "type": "scatter",
                        "xsrc": "aylu:2:0c2e9a",
                        "ysrc": "aylu:2:5549ba",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "step",
                                "y": "losses/train.total_loss"
                            }
                        },
                        "mode": "lines",
                        "name": "Mixed",
                        "type": "scatter",
                        "xsrc": "aylu:0:617a7c",
                        "ysrc": "aylu:0:9fd3a7",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            300
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.2077982925499551e-05,
                            0.016219734980647143
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aylu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/76.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-10 14:24:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aylu",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T12:44:49.247334Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/85.embed",
            "fid": "diannelauc:85",
            "filename": "28th day with fly ash TENSILE copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/85/9_P2TES5G4BVY4H9E31N799MHRI0887A.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/diannelauc:85/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/diannelauc:85/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/85/9_P2TES5G4BVY4H9E31N799MHRI0887A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:85",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:85",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 135,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/85/",
            "world_readable": true,
            "date_modified": "2025-08-12T06:29:53.850Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/85/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "box",
                        "ysrc": "diannelauc:84:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "0% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "0% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "0% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:b05272",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "5% MSSA 0% CDW ",
                        "type": "box",
                        "ysrc": "diannelauc:84:608f72",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "5% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:7ae72f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "5% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:6f3228",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "5% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:483831",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "name": "10% MSSA 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:a71349",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "10% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:8a7877",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "15% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:2cc518",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(0, 150, 255)",
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": "legendonly",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "mode": "lines",
                        "name": "5% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:095ef8",
                        "visible": true,
                        "boxpoints": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "name": "5% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:6113a1",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "name": "10% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:bb5304",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "name": "10% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:84:455117",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "28th Day Split Tensile Strength of M30 Concrete Mix Designs"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            15
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -6.527027027027027,
                            8
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true
                    },
                    "shapes": [
                        {
                            "x0": -0.5,
                            "x1": 15,
                            "y0": 24.1,
                            "y1": 24.1,
                            "line": {
                                "color": "rgb(245, 8, 8)",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "visible": false,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 3.5,
                            "x1": 3.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "dash": "solid",
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 7.5,
                            "x1": 7.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 9.5,
                            "x1": 9.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 10.700084881026578,
                            "x1": 10.700084881026578,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 12.5,
                            "x1": 12.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 1.5,
                            "y": 2,
                            "ax": -10,
                            "ay": 29,
                            "text": "0% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 5.5,
                            "y": 2,
                            "ax": 7,
                            "ay": 28,
                            "text": "5% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 8.5,
                            "y": 2.6,
                            "ax": -5,
                            "ay": 42,
                            "text": "10% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 0.03840728859401114,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -6,
                            "text": "0%&nbsp;<br>"
                        },
                        {
                            "x": 1,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -7,
                            "text": "30%&nbsp;"
                        },
                        {
                            "x": 2.1,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "50%&nbsp;"
                        },
                        {
                            "x": 3,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "70%&nbsp;"
                        },
                        {
                            "x": 1.3,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -4,
                            "text": "CDW",
                            "arrowcolor": "rgb(46, 28, 28)"
                        },
                        {
                            "x": 4,
                            "y": -2.5,
                            "ax": 3,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 4.9,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "30%"
                        },
                        {
                            "x": 5.999929072681703,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 7,
                            "y": -2.5,
                            "ax": 0,
                            "ay": -9,
                            "text": "70%"
                        },
                        {
                            "x": 5.4,
                            "y": -3.5,
                            "ax": 8,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 8,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 9,
                            "y": -2,
                            "ax": -1,
                            "ay": 4,
                            "text": "50%"
                        },
                        {
                            "x": 8.5,
                            "y": -3.5,
                            "ax": -2,
                            "ay": -4,
                            "text": "CDW"
                        },
                        {
                            "x": 10,
                            "y": -2.5,
                            "ax": 6,
                            "ay": -8,
                            "text": "30%"
                        },
                        {
                            "x": 10,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -6,
                            "text": "CDW"
                        },
                        {
                            "x": 11,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 12,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 11.5,
                            "y": -3.5,
                            "ax": 4,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 13,
                            "y": -2,
                            "ax": -2,
                            "ay": 3,
                            "text": "0%"
                        },
                        {
                            "x": 14,
                            "y": -2,
                            "ax": -10,
                            "ay": 3,
                            "text": "50%"
                        },
                        {
                            "x": 13.229422232493182,
                            "y": -5,
                            "ax": 10,
                            "ay": -32,
                            "text": "CDW",
                            "arrowcolor": "rgb(255, 253, 253)"
                        },
                        {
                            "x": 11.7,
                            "y": 1,
                            "ax": -10,
                            "ay": 8,
                            "text": "5% Fly Ash"
                        },
                        {
                            "x": 13.5,
                            "y": 1,
                            "ax": -10,
                            "ay": 7,
                            "text": "10% Fly Ash"
                        },
                        {
                            "x": 10.5,
                            "y": 1,
                            "ax": -20,
                            "ay": 8,
                            "text": "15% MSSA"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T12:39:44.233134Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aboveandbeyond/1.embed",
            "fid": "aboveandbeyond:1",
            "filename": "fless-salary-research",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/aboveandbeyond:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/aboveandbeyond/1/2_LQCEMPQFZZ1ZRUFGHG5S4HHSHBVHAH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aboveandbeyond/1/8_Y5GFD7H1ZHFRJ93L6U9ZB9RO47B6K0.png",
                "list-thumb": "https://api.plotly.com/v2/files/aboveandbeyond:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aboveandbeyond:1",
                "plots": "https://api.plotly.com/v2/plots/aboveandbeyond:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=aboveandbeyond"
            },
            "owner": "aboveandbeyond",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 143,
            "web_url": "https://chart-studio.plotly.com/~aboveandbeyond/1/",
            "world_readable": true,
            "date_modified": "2025-08-10T12:46:06.508Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aboveandbeyond/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Зарплата в год",
                        "type": "bar",
                        "xsrc": "aboveandbeyond:2:54ba1b",
                        "ysrc": "aboveandbeyond:2:a6fb8a",
                        "marker": {
                            "color": "#636EFA"
                        },
                        "textsrc": "aboveandbeyond:2:3215ba",
                        "textfont": {
                            "size": 10,
                            "color": "rgb(184,189,252)"
                        },
                        "textposition": "inside",
                        "customdatasrc": "aboveandbeyond:2:c76d08",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>",
                        "insidetextanchor": "end"
                    },
                    {
                        "name": "Годовой бонус",
                        "type": "bar",
                        "xsrc": "aboveandbeyond:2:117dcc",
                        "ysrc": "aboveandbeyond:2:2a3c2b",
                        "marker": {
                            "color": "#EF553B"
                        },
                        "textsrc": "aboveandbeyond:2:e44787",
                        "textfont": {
                            "size": 10,
                            "color": "rgb(249,195,186)"
                        },
                        "textposition": "inside",
                        "customdatasrc": "aboveandbeyond:2:59fb92",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>",
                        "insidetextanchor": "end"
                    },
                    {
                        "line": {
                            "color": "white",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Зарплата в месяц",
                        "type": "scatter",
                        "xsrc": "aboveandbeyond:2:603059",
                        "ysrc": "aboveandbeyond:2:7290f5",
                        "yaxis": "y2",
                        "customdatasrc": "aboveandbeyond:2:a0b5e6",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>Зарплата в месяц: %{customdata[2]:,}<br>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Зарплата и бонусы по компаниям"
                    },
                    "xaxis": {
                        "type": "linear",
                        "title": {
                            "text": "Компания"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Tier 2 consulting company",
                            "Консалтинговый бутик",
                            "Kearney",
                            "Одна из Биг Фарма компаний ",
                            "PwC",
                            "Яков и Партнеры",
                            "HQ",
                            "Accenture",
                            "NDA, trading",
                            "Roland Berger",
                            "Яндекс ",
                            "Яндекс",
                            "Крупная компания из сферы горной добычи",
                            "Bolt",
                            "Сибур",
                            "Private",
                            "Авито",
                            "Яков и Партнёры",
                            "BCG",
                            "Ростех (один из холдингов)",
                            "McK",
                            "Озон",
                            "Б1",
                            "Yandex",
                            "Авито",
                            "Anonym",
                            "Goldman Sachs",
                            "Etched ",
                            "АТК",
                            "VC Fund",
                            "X5",
                            "Яндекс",
                            "Норильский никель",
                            "Family office",
                            "ООО ВКонтакте",
                            "Small IT company ",
                            "Яндекс",
                            "Биржа",
                            "ДОМ РФ",
                            "сбер",
                            "ГНИВЦ",
                            "Вб",
                            "Мкб",
                            "ФЦК",
                            "WB Tech",
                            "Yeresoft",
                            "СИБУР ",
                            "Т1 (ИТ Холдинг)",
                            "Яндекс",
                            "Яндекс",
                            "Кэпт",
                            "Indefi",
                            "GFO X",
                            "Северсталь",
                            "Роснефть (дочернее общество в группе)",
                            "Avito",
                            "Т-банк",
                            "Яндекс",
                            "-",
                            null,
                            "не скажу",
                            "Travel tech",
                            "Авито",
                            "Х5",
                            "Банки.ру",
                            "Газпром нефть ",
                            "Яндекс",
                            "Правительство Московской области ",
                            "Втб",
                            "Альфа банк",
                            "МТС",
                            "Сбер",
                            "-",
                            "Небольшая компания с выручкой менее 10 млрд руб (Metals&Mining)",
                            "VK",
                            "Erste",
                            "Family Office",
                            "Альфа Банк",
                            "Мегафон ",
                            "Яндекс",
                            "Девелоперская компания",
                            "Консалтинг бутик",
                            "Яндекс",
                            "Sporting goods",
                            "Xxx",
                            "Dodo Brands",
                            "Arthur Consulting",
                            "Группа Неман",
                            "IDF Eurasia",
                            "Пепсико",
                            "OilTeam",
                            "Альфа-Банк",
                            "Яндекс",
                            "Компания в сфере энергетике ",
                            "Сбербанк",
                            "Промсвязьбанк",
                            "Excellence Expert",
                            "AT",
                            "ЦБП",
                            "Федеральный застройщик",
                            "Дефендер",
                            "Билайн",
                            "Ozon",
                            "IQVIA",
                            "Дочка Лукойла ",
                            "Самокат тех",
                            "МТС Рекламные технологий ",
                            "ТеДо",
                            "Ростелеком",
                            "Департамент информационных технологий ",
                            "Retail ",
                            "Итмо",
                            "ГК Альфа",
                            "Сбер",
                            "Втб",
                            "Татнефть",
                            "Arthur Consulting",
                            "Сколково",
                            "Sminex",
                            "F",
                            "Магнит",
                            "Т-Банк",
                            "GlowByte",
                            "Точка",
                            "Альфа-банк ",
                            "Яндекс",
                            "Яндекс Такси",
                            "Wildberries",
                            "ФЦК",
                            "Яндекс",
                            "Газпромнефть-Ямал",
                            "Группа Неман",
                            "ВТБ",
                            "Б1",
                            "OKS Labs",
                            "Технологии Доверия",
                            "Экопси",
                            "Avitotech",
                            "Яндекс ",
                            "ООО Технологии Доверия",
                            "Samolet",
                            "Альфа банк ",
                            "Центр по внешней торговле при Минпромторге",
                            "ПАО Банк ПСБ",
                            "Компания в области решений для Советов директоров",
                            "Big4",
                            "Strategy partners",
                            "Яков и Партнёры",
                            "Технологии Доверия",
                            "VK",
                            "ТБанк",
                            "ДРТ",
                            "Спортмастер",
                            "ТБанк",
                            "-",
                            "Тбанк",
                            "Авито",
                            "Т-Банк",
                            "Kept",
                            "Kept (ex KPMG)",
                            "Тбанк",
                            "Kept",
                            "Sber",
                            "McK Partners",
                            "Технологии доверия",
                            "Технологии Доверия",
                            "Strategy partners",
                            "Газпром нефть",
                            "Яндекс",
                            "Роснефть",
                            "НДА",
                            "Б1",
                            "Технологии Доверия",
                            "Банк Хлынов",
                            "Технологии Доверия",
                            "Отраслевой консалтинг",
                            "Тедо",
                            "o2consulting",
                            "EY",
                            "Б1",
                            "\"Деловые решения и технологии\" ex. Deloitte",
                            "Сбер",
                            "EY",
                            "Strategy partners",
                            "ООО «РУСАУДИТ»",
                            "АО Узбекнефтегаз"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33,
                            34,
                            35,
                            36,
                            37,
                            38,
                            39,
                            40,
                            41,
                            42,
                            43,
                            44,
                            45,
                            46,
                            47,
                            48,
                            49,
                            50,
                            51,
                            52,
                            53,
                            54,
                            55,
                            56,
                            57,
                            58,
                            59,
                            60,
                            61,
                            62,
                            63,
                            64,
                            65,
                            66,
                            67,
                            68,
                            69,
                            70,
                            71,
                            72,
                            73,
                            74,
                            75,
                            76,
                            77,
                            78,
                            79,
                            80,
                            81,
                            82,
                            83,
                            84,
                            85,
                            86,
                            87,
                            88,
                            89,
                            90,
                            91,
                            92,
                            93,
                            94,
                            95,
                            96,
                            97,
                            98,
                            99,
                            100,
                            101,
                            102,
                            103,
                            104,
                            105,
                            106,
                            107,
                            108,
                            109,
                            110,
                            111,
                            112,
                            113,
                            114,
                            115,
                            116,
                            117,
                            118,
                            119,
                            120,
                            121,
                            122,
                            123,
                            124,
                            125,
                            126,
                            127,
                            128,
                            129,
                            130,
                            131,
                            132,
                            133,
                            134,
                            135,
                            136,
                            137,
                            138,
                            139,
                            140,
                            141,
                            142,
                            143,
                            144,
                            145,
                            146,
                            147,
                            148,
                            149,
                            150,
                            151,
                            152,
                            153,
                            154,
                            155,
                            156,
                            157,
                            158,
                            159,
                            160,
                            161,
                            162,
                            163,
                            164,
                            165,
                            166,
                            167,
                            168,
                            169,
                            170,
                            171,
                            172,
                            173,
                            174,
                            175,
                            176,
                            177,
                            178,
                            179,
                            180,
                            181,
                            182,
                            183,
                            184,
                            185
                        ],
                        "tickangle": -60,
                        "rangeslider": {
                            "visible": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "rgba(220,220,220,0.9)"
                            },
                            "text": "Млн руб"
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "rgba(220,220,220,0.9)"
                        },
                        "ticktext": [
                            "0",
                            "5",
                            "10",
                            "15",
                            "20",
                            "25",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            5000000,
                            10000000,
                            15000000,
                            20000000,
                            25000000,
                            30000000
                        ],
                        "zeroline": true,
                        "gridcolor": "rgba(255,255,255,0.08)",
                        "zerolinecolor": "rgba(255,255,255,0.25)"
                    },
                    "height": 1000,
                    "legend": {
                        "x": 0.5,
                        "y": 1.02,
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 140,
                        "t": 90
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "white"
                            },
                            "text": "Зарплата в месяц (руб)"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "color": "white"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y"
                    },
                    "barmode": "stack",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#f2f5fa"
                                    },
                                    "error_y": {
                                        "color": "#f2f5fa"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "dark"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "color": "#f2f5fa"
                                }
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        }
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0,
                            "y": 28800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "28.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 1,
                            "y": 22400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "22.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 2,
                            "y": 18000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "18",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 3,
                            "y": 17420000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "17.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 4,
                            "y": 15975000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "16.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 5,
                            "y": 15000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "15",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 6,
                            "y": 13600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "13.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 7,
                            "y": 13000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "13",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 8,
                            "y": 12800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "12.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 9,
                            "y": 12750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "12.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 10,
                            "y": 11900000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "11.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 11,
                            "y": 11050000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "11.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 12,
                            "y": 10800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 13,
                            "y": 10080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 14,
                            "y": 10080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 15,
                            "y": 9600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 16,
                            "y": 9520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 17,
                            "y": 9300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 18,
                            "y": 9062500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 19,
                            "y": 8850000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 20,
                            "y": 8400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 21,
                            "y": 8320000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 22,
                            "y": 8250000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 23,
                            "y": 8160000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 24,
                            "y": 8100000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 25,
                            "y": 8000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 26,
                            "y": 7750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 27,
                            "y": 7680000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 28,
                            "y": 7500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 29,
                            "y": 7500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 30,
                            "y": 7310000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 31,
                            "y": 6750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 32,
                            "y": 6720000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 33,
                            "y": 6650000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 34,
                            "y": 6510000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 35,
                            "y": 6480000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 36,
                            "y": 6400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 37,
                            "y": 6360000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 38,
                            "y": 6300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 39,
                            "y": 6200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 40,
                            "y": 6090000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 41,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 42,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 43,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 44,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 45,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 46,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 47,
                            "y": 5940000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 48,
                            "y": 5920000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 49,
                            "y": 5696000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 50,
                            "y": 5670000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 51,
                            "y": 5600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 52,
                            "y": 5600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 53,
                            "y": 5550000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 54,
                            "y": 5520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 55,
                            "y": 5478000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 56,
                            "y": 5460000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 57,
                            "y": 5445000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 58,
                            "y": 5400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 59,
                            "y": 5400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 60,
                            "y": 5355000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 61,
                            "y": 5330000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 62,
                            "y": 5200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 63,
                            "y": 5100000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 64,
                            "y": 4987500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 65,
                            "y": 4960000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 66,
                            "y": 4906800.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 67,
                            "y": 4900000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 68,
                            "y": 4860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 69,
                            "y": 4830000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 70,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 71,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 72,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 73,
                            "y": 4745000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 74,
                            "y": 4695000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 75,
                            "y": 4680000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 76,
                            "y": 4620000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 77,
                            "y": 4560000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 78,
                            "y": 4550000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 79,
                            "y": 4410000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 80,
                            "y": 4400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 81,
                            "y": 4350000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 82,
                            "y": 4350000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 83,
                            "y": 4290000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 84,
                            "y": 4290000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 85,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 86,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 87,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 88,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 89,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 90,
                            "y": 4132500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 91,
                            "y": 4080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 92,
                            "y": 4060000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 93,
                            "y": 4000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 94,
                            "y": 3976000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 95,
                            "y": 3952000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 96,
                            "y": 3920000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 97,
                            "y": 3915000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 98,
                            "y": 3850000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 99,
                            "y": 3842500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 100,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 101,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 102,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 103,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 104,
                            "y": 3778500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 105,
                            "y": 3756000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 106,
                            "y": 3654000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 107,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 108,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 109,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 110,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 111,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 112,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 113,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 114,
                            "y": 3528000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 115,
                            "y": 3520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 116,
                            "y": 3510000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 117,
                            "y": 3500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 118,
                            "y": 3467500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 119,
                            "y": 3307500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 120,
                            "y": 3300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 121,
                            "y": 3248000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 122,
                            "y": 3220000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 123,
                            "y": 3180000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 124,
                            "y": 3151500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 125,
                            "y": 3150000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 126,
                            "y": 3150000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 127,
                            "y": 3120000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 128,
                            "y": 3080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 129,
                            "y": 3000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 130,
                            "y": 2880000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 131,
                            "y": 2860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 132,
                            "y": 2835000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 133,
                            "y": 2800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 134,
                            "y": 2800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 135,
                            "y": 2784000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 136,
                            "y": 2775000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 137,
                            "y": 2730000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 138,
                            "y": 2700000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 139,
                            "y": 2639000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 140,
                            "y": 2600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 141,
                            "y": 2502000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 142,
                            "y": 2500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 143,
                            "y": 2475000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 144,
                            "y": 2400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 145,
                            "y": 2340000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 146,
                            "y": 2304000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 147,
                            "y": 2280000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 148,
                            "y": 2262000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 149,
                            "y": 2223000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 150,
                            "y": 2210000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 151,
                            "y": 2160000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 152,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 153,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 154,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 155,
                            "y": 2080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 156,
                            "y": 2040000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 157,
                            "y": 2028000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 158,
                            "y": 2028000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 159,
                            "y": 1980000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 160,
                            "y": 1930500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 161,
                            "y": 1900800.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 162,
                            "y": 1860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 163,
                            "y": 1800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 164,
                            "y": 1755000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 165,
                            "y": 1690000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 166,
                            "y": 1644300.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 167,
                            "y": 1518000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 168,
                            "y": 1365000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 169,
                            "y": 1250000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 170,
                            "y": 1200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 171,
                            "y": 1131000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 172,
                            "y": 1120000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 173,
                            "y": 1087500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 174,
                            "y": 1080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 175,
                            "y": 1044000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 176,
                            "y": 1040000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 177,
                            "y": 1020000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 178,
                            "y": 912500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 179,
                            "y": 840000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 180,
                            "y": 809100.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 181,
                            "y": 804000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 182,
                            "y": 725000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 183,
                            "y": 648000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 184,
                            "y": 600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 185,
                            "y": 520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.5",
                            "yshift": 10,
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 1,
                            "y": 1.16,
                            "pad": {
                                "b": 2,
                                "l": 4,
                                "r": 4,
                                "t": 2
                            },
                            "font": {
                                "size": 11,
                                "color": "white"
                            },
                            "type": "buttons",
                            "active": 0,
                            "bgcolor": "rgba(60,60,60,0.9)",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Show the line",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                false
                                            ]
                                        }
                                    ],
                                    "label": "Hide the line",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "right",
                            "showactive": false,
                            "bordercolor": "rgba(100,100,100,0.5)",
                            "borderwidth": 1
                        }
                    ]
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aboveandbeyond",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-10 12:36:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aboveandbeyond",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T12:34:15.634807Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/83.embed",
            "fid": "diannelauc:83",
            "filename": "14th day with fly ash TENSILE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/83/9_Z9PL9BAA0MOB4O1LXIE16UUWT9KIBR.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/diannelauc:83/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/83/8_B3N89KZJ520RZEQ7ZPIHV6AD9ETQMW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/83/9_Z9PL9BAA0MOB4O1LXIE16UUWT9KIBR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:83",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:83",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 135,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/83/",
            "world_readable": true,
            "date_modified": "2025-08-10T12:44:38.731Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/83/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "box",
                        "ysrc": "diannelauc:82:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "0% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "0% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "0% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:b05272",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "5% MSSA 0% CDW ",
                        "type": "box",
                        "ysrc": "diannelauc:82:608f72",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "5% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:7ae72f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "5% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:6f3228",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "5% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:483831",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "name": "10% MSSA 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:a71349",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "10% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:8a7877",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "15% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:2cc518",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(0, 150, 255)",
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": "legendonly",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "mode": "lines",
                        "name": "5% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:095ef8",
                        "visible": true,
                        "boxpoints": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "name": "5% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:6113a1",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "name": "10% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:bb5304",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "name": "10% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:82:455117",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "14th Day Split Tensile Strength of M30 Concrete Mix Designs"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            15
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -6.527027027027027,
                            8
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true
                    },
                    "shapes": [
                        {
                            "x0": -0.5,
                            "x1": 15,
                            "y0": 24.1,
                            "y1": 24.1,
                            "line": {
                                "color": "rgb(245, 8, 8)",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "visible": false,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 3.5,
                            "x1": 3.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "dash": "solid",
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 7.5,
                            "x1": 7.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 9.5,
                            "x1": 9.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 10.700084881026578,
                            "x1": 10.700084881026578,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 12.5,
                            "x1": 12.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 1.5,
                            "y": 2,
                            "ax": -10,
                            "ay": 29,
                            "text": "0% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 5.5,
                            "y": 2,
                            "ax": 7,
                            "ay": 28,
                            "text": "5% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 8.5,
                            "y": 2.6,
                            "ax": -5,
                            "ay": 42,
                            "text": "10% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 0.03840728859401114,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -6,
                            "text": "0%&nbsp;<br>"
                        },
                        {
                            "x": 1,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -7,
                            "text": "30%&nbsp;"
                        },
                        {
                            "x": 2.1,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "50%&nbsp;"
                        },
                        {
                            "x": 3,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "70%&nbsp;"
                        },
                        {
                            "x": 1.3,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -4,
                            "text": "CDW",
                            "arrowcolor": "rgb(46, 28, 28)"
                        },
                        {
                            "x": 4,
                            "y": -2.5,
                            "ax": 3,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 4.9,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "30%"
                        },
                        {
                            "x": 5.999929072681703,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 7,
                            "y": -2.5,
                            "ax": 0,
                            "ay": -9,
                            "text": "70%"
                        },
                        {
                            "x": 5.4,
                            "y": -3.5,
                            "ax": 8,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 8,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 9,
                            "y": -2,
                            "ax": -1,
                            "ay": 4,
                            "text": "50%"
                        },
                        {
                            "x": 8.5,
                            "y": -3.5,
                            "ax": -2,
                            "ay": -4,
                            "text": "CDW"
                        },
                        {
                            "x": 10,
                            "y": -2.5,
                            "ax": 6,
                            "ay": -8,
                            "text": "30%"
                        },
                        {
                            "x": 10,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -6,
                            "text": "CDW"
                        },
                        {
                            "x": 11,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 12,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 11.5,
                            "y": -3.5,
                            "ax": 4,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 13,
                            "y": -2,
                            "ax": -2,
                            "ay": 3,
                            "text": "0%"
                        },
                        {
                            "x": 14,
                            "y": -2,
                            "ax": -10,
                            "ay": 3,
                            "text": "50%"
                        },
                        {
                            "x": 13.229422232493182,
                            "y": -5,
                            "ax": 10,
                            "ay": -32,
                            "text": "CDW",
                            "arrowcolor": "rgb(255, 253, 253)"
                        },
                        {
                            "x": 11.7,
                            "y": 1,
                            "ax": -10,
                            "ay": 8,
                            "text": "5% Fly Ash"
                        },
                        {
                            "x": 13.5,
                            "y": 1,
                            "ax": -10,
                            "ay": 7,
                            "text": "10% Fly Ash"
                        },
                        {
                            "x": 10.5,
                            "y": 1,
                            "ax": -20,
                            "ay": 8,
                            "text": "15% MSSA"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T12:07:29.702109Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/81.embed",
            "fid": "diannelauc:81",
            "filename": "7th day with fly ash TENSILE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/81/9_XLB5I9HXP8PEN8UYNLVKVDHHMH5M6U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/81/2_R26TVWCXBMUA5UTDI15IE9JA8NJSV9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/81/8_CRX18JOUZVBUMAOUY3K29GOC25YQHH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/81/9_XLB5I9HXP8PEN8UYNLVKVDHHMH5M6U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:81",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:81",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 135,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/81/",
            "world_readable": true,
            "date_modified": "2025-08-10T12:54:28.109Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/81/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "box",
                        "ysrc": "diannelauc:80:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "0% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "0% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "0% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:b05272",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "5% MSSA 0% CDW ",
                        "type": "box",
                        "ysrc": "diannelauc:80:608f72",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "5% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:7ae72f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "5% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:6f3228",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "5% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:483831",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "name": "10% MSSA 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:a71349",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "10% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:8a7877",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": false,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "15% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:2cc518",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(0, 150, 255)",
                            "opacity": 1
                        },
                        "boxmean": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": "legendonly",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "mode": "lines",
                        "name": "5% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:095ef8",
                        "visible": true,
                        "boxpoints": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "name": "5% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:6113a1",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "name": "10% Fly Ash 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:bb5304",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "name": "10% Fly Ash 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:80:455117",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "7th Day Split Tensile Strength of M30 Concrete Mix Designs"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            15
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -6.527027027027027,
                            8
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true
                    },
                    "shapes": [
                        {
                            "x0": -0.5,
                            "x1": 15,
                            "y0": 24.1,
                            "y1": 24.1,
                            "line": {
                                "color": "rgb(245, 8, 8)",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "visible": false,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 3.5,
                            "x1": 3.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "dash": "solid",
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 7.5,
                            "x1": 7.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 9.5,
                            "x1": 9.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 10.700084881026578,
                            "x1": 10.700084881026578,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 12.5,
                            "x1": 12.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 1.5,
                            "y": 2,
                            "ax": -10,
                            "ay": 29,
                            "text": "0% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 5.5,
                            "y": 2,
                            "ax": 7,
                            "ay": 28,
                            "text": "5% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 8.5,
                            "y": 2.6,
                            "ax": -5,
                            "ay": 42,
                            "text": "10% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 0.03840728859401114,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -6,
                            "text": "0%&nbsp;<br>"
                        },
                        {
                            "x": 1,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -7,
                            "text": "30%&nbsp;"
                        },
                        {
                            "x": 2.1,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "50%&nbsp;"
                        },
                        {
                            "x": 3,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "70%&nbsp;"
                        },
                        {
                            "x": 1.3,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -4,
                            "text": "CDW",
                            "arrowcolor": "rgb(46, 28, 28)"
                        },
                        {
                            "x": 4,
                            "y": -2.5,
                            "ax": 3,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 4.9,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "30%"
                        },
                        {
                            "x": 5.999929072681703,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 7,
                            "y": -2.5,
                            "ax": 0,
                            "ay": -9,
                            "text": "70%"
                        },
                        {
                            "x": 5.4,
                            "y": -3.5,
                            "ax": 8,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 8,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 9,
                            "y": -2,
                            "ax": -1,
                            "ay": 4,
                            "text": "50%"
                        },
                        {
                            "x": 8.5,
                            "y": -3.5,
                            "ax": -2,
                            "ay": -4,
                            "text": "CDW"
                        },
                        {
                            "x": 10,
                            "y": -2.5,
                            "ax": 6,
                            "ay": -8,
                            "text": "30%"
                        },
                        {
                            "x": 10,
                            "y": -3.5,
                            "ax": 6,
                            "ay": -6,
                            "text": "CDW"
                        },
                        {
                            "x": 11,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 12,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 11.5,
                            "y": -3.5,
                            "ax": 4,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 13,
                            "y": -2,
                            "ax": -2,
                            "ay": 3,
                            "text": "0%"
                        },
                        {
                            "x": 14,
                            "y": -2,
                            "ax": -10,
                            "ay": 3,
                            "text": "50%"
                        },
                        {
                            "x": 13.229422232493182,
                            "y": -5,
                            "ax": 10,
                            "ay": -32,
                            "text": "CDW",
                            "arrowcolor": "rgb(255, 253, 253)"
                        },
                        {
                            "x": 11.7,
                            "y": 1,
                            "ax": -10,
                            "ay": 8,
                            "text": "5% Fly Ash"
                        },
                        {
                            "x": 13.5,
                            "y": 1,
                            "ax": -10,
                            "ay": 7,
                            "text": "10% Fly Ash"
                        },
                        {
                            "x": 10.5,
                            "y": 1,
                            "ax": -20,
                            "ay": 8,
                            "text": "15% MSSA"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T11:22:05.497337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~4e/541.embed",
            "fid": "4e:541",
            "filename": "Plot 541",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/4e:541/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/4e/541/2_M2L00OHB4W07HWK5KDYSNTUPP9JAHT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/4e/541/8_T5I1VVSZH3M0GWOKVNX5PV2LDSK4JM.png",
                "list-thumb": "https://api.plotly.com/v2/files/4e:541/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/4e:541",
                "plots": "https://api.plotly.com/v2/plots/4e:541",
                "parent": "https://api.plotly.com/v2/folders/home?user=4e"
            },
            "owner": "4e",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~4e/541/",
            "world_readable": true,
            "date_modified": "2025-08-10T17:49:02.926Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~4e/541/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(16, 140, 3)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:540:b10413",
                        "ysrc": "4e:540:e4d66f",
                        "visible": true,
                        "connectgaps": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:540:b10413",
                        "ysrc": "4e:540:00a725",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(16, 140, 3)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:540:f6708f",
                        "ysrc": "4e:540:209c52",
                        "visible": true,
                        "stackgroup": null,
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Bandit"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            5688
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3549.1666666666665,
                            67434.16666666667
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~4e",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-09-12 13:44:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "4e",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T06:23:21.369567Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NEHAAAAAAAA/1.embed",
            "fid": "NEHAAAAAAAA:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/NEHAAAAAAAA/1/9_ICX8ONFXXW8I0BLLVPHSKTZUVN4BVY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/NEHAAAAAAAA/1/2_R4BFTUWGVKXM6YJ9IBS9MF6XZUWV87.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NEHAAAAAAAA/1/8_F1K26I4CW1GRK7M6B9L74VW7K10B8M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NEHAAAAAAAA/1/9_ICX8ONFXXW8I0BLLVPHSKTZUVN4BVY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NEHAAAAAAAA:1",
                "plots": "https://api.plotly.com/v2/plots/NEHAAAAAAAA:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=NEHAAAAAAAA"
            },
            "owner": "NEHAAAAAAAA",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~NEHAAAAAAAA/1/",
            "world_readable": true,
            "date_modified": "2025-08-10T06:36:19.102Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NEHAAAAAAAA/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "NEHAAAAAAAA:0:139889",
                        "ysrc": "NEHAAAAAAAA:0:f8be1d",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "MACHINE OIL"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            35,
                            60
                        ],
                        "title": {
                            "text": "ANGLE OF INCIDENCE"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            33,
                            53
                        ],
                        "title": {
                            "text": "ANGLE OF DEVIATION"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~NEHAAAAAAAA",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-10 06:19:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NEHAAAAAAAA",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-10T01:23:00.407428Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nikschankin/4.embed",
            "fid": "nikschankin:4",
            "filename": "fless-salary-research",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nikschankin/4/9_0EMN43DIDNRIYHM5FL6FNWXYPY4HA1.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nikschankin:4/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nikschankin/4/8_4JM4UU4WN1LIN4TGUERN7U8J6QMWH8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nikschankin/4/9_0EMN43DIDNRIYHM5FL6FNWXYPY4HA1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nikschankin:4",
                "plots": "https://api.plotly.com/v2/plots/nikschankin:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=nikschankin"
            },
            "owner": "nikschankin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~nikschankin/4/",
            "world_readable": true,
            "date_modified": "2025-08-10T12:37:39.533Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nikschankin/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Зарплата в год",
                        "type": "bar",
                        "xsrc": "nikschankin:5:93047d",
                        "ysrc": "nikschankin:5:605c8e",
                        "marker": {
                            "color": "#636EFA"
                        },
                        "textsrc": "nikschankin:5:f352f4",
                        "textfont": {
                            "size": 10,
                            "color": "rgb(184,189,252)"
                        },
                        "textposition": "inside",
                        "customdatasrc": "nikschankin:5:783ed5",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>",
                        "insidetextanchor": "end"
                    },
                    {
                        "name": "Годовой бонус",
                        "type": "bar",
                        "xsrc": "nikschankin:5:1ce1f6",
                        "ysrc": "nikschankin:5:75cae7",
                        "marker": {
                            "color": "#EF553B"
                        },
                        "textsrc": "nikschankin:5:e7926b",
                        "textfont": {
                            "size": 10,
                            "color": "rgb(249,195,186)"
                        },
                        "textposition": "inside",
                        "customdatasrc": "nikschankin:5:b8f68c",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>",
                        "insidetextanchor": "end"
                    },
                    {
                        "line": {
                            "color": "white",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Зарплата в месяц",
                        "type": "scatter",
                        "xsrc": "nikschankin:5:dfceb8",
                        "ysrc": "nikschankin:5:b16edb",
                        "yaxis": "y2",
                        "customdatasrc": "nikschankin:5:ac7f0d",
                        "hovertemplate": "<b>%{customdata[0]}</b><br>%{customdata[1]}<br>Зарплата в месяц: %{customdata[2]:,}<br>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Зарплата и бонусы по компаниям"
                    },
                    "xaxis": {
                        "type": "linear",
                        "title": {
                            "text": "Компания"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Tier 2 consulting company",
                            "Консалтинговый бутик",
                            "Kearney",
                            "Одна из Биг Фарма компаний ",
                            "PwC",
                            "Яков и Партнеры",
                            "HQ",
                            "Accenture",
                            "NDA, trading",
                            "Roland Berger",
                            "Яндекс ",
                            "Яндекс",
                            "Крупная компания из сферы горной добычи",
                            "Bolt",
                            "Сибур",
                            "Private",
                            "Авито",
                            "Яков и Партнёры",
                            "BCG",
                            "Ростех (один из холдингов)",
                            "McK",
                            "Озон",
                            "Б1",
                            "Yandex",
                            "Авито",
                            "Anonym",
                            "Goldman Sachs",
                            "Etched ",
                            "АТК",
                            "VC Fund",
                            "X5",
                            "Яндекс",
                            "Норильский никель",
                            "Family office",
                            "ООО ВКонтакте",
                            "Small IT company ",
                            "Яндекс",
                            "Биржа",
                            "ДОМ РФ",
                            "сбер",
                            "ГНИВЦ",
                            "Вб",
                            "Мкб",
                            "ФЦК",
                            "WB Tech",
                            "Yeresoft",
                            "СИБУР ",
                            "Т1 (ИТ Холдинг)",
                            "Яндекс",
                            "Яндекс",
                            "Кэпт",
                            "Indefi",
                            "GFO X",
                            "Северсталь",
                            "Роснефть (дочернее общество в группе)",
                            "Avito",
                            "Т-банк",
                            "Яндекс",
                            "-",
                            null,
                            "не скажу",
                            "Travel tech",
                            "Авито",
                            "Х5",
                            "Банки.ру",
                            "Газпром нефть ",
                            "Яндекс",
                            "Правительство Московской области ",
                            "Втб",
                            "Альфа банк",
                            "МТС",
                            "Сбер",
                            "-",
                            "Небольшая компания с выручкой менее 10 млрд руб (Metals&Mining)",
                            "VK",
                            "Erste",
                            "Family Office",
                            "Альфа Банк",
                            "Мегафон ",
                            "Яндекс",
                            "Девелоперская компания",
                            "Консалтинг бутик",
                            "Яндекс",
                            "Sporting goods",
                            "Xxx",
                            "Dodo Brands",
                            "Arthur Consulting",
                            "Группа Неман",
                            "IDF Eurasia",
                            "Пепсико",
                            "OilTeam",
                            "Альфа-Банк",
                            "Яндекс",
                            "Компания в сфере энергетике ",
                            "Сбербанк",
                            "Промсвязьбанк",
                            "Excellence Expert",
                            "AT",
                            "ЦБП",
                            "Федеральный застройщик",
                            "Дефендер",
                            "Билайн",
                            "Ozon",
                            "IQVIA",
                            "Дочка Лукойла ",
                            "Самокат тех",
                            "МТС Рекламные технологий ",
                            "ТеДо",
                            "Ростелеком",
                            "Департамент информационных технологий ",
                            "Retail ",
                            "Итмо",
                            "ГК Альфа",
                            "Сбер",
                            "Втб",
                            "Татнефть",
                            "Arthur Consulting",
                            "Сколково",
                            "Sminex",
                            "F",
                            "Магнит",
                            "Т-Банк",
                            "GlowByte",
                            "Точка",
                            "Альфа-банк ",
                            "Яндекс",
                            "Яндекс Такси",
                            "Wildberries",
                            "ФЦК",
                            "Яндекс",
                            "Газпромнефть-Ямал",
                            "Группа Неман",
                            "ВТБ",
                            "Б1",
                            "OKS Labs",
                            "Технологии Доверия",
                            "Экопси",
                            "Avitotech",
                            "Яндекс ",
                            "ООО Технологии Доверия",
                            "Samolet",
                            "Альфа банк ",
                            "Центр по внешней торговле при Минпромторге",
                            "ПАО Банк ПСБ",
                            "Компания в области решений для Советов директоров",
                            "Big4",
                            "Strategy partners",
                            "Яков и Партнёры",
                            "Технологии Доверия",
                            "VK",
                            "ТБанк",
                            "ДРТ",
                            "Спортмастер",
                            "ТБанк",
                            "-",
                            "Тбанк",
                            "Авито",
                            "Т-Банк",
                            "Kept",
                            "Kept (ex KPMG)",
                            "Тбанк",
                            "Kept",
                            "Sber",
                            "McK Partners",
                            "Технологии доверия",
                            "Технологии Доверия",
                            "Strategy partners",
                            "Газпром нефть",
                            "Яндекс",
                            "Роснефть",
                            "НДА",
                            "Б1",
                            "Технологии Доверия",
                            "Банк Хлынов",
                            "Технологии Доверия",
                            "Отраслевой консалтинг",
                            "Тедо",
                            "o2consulting",
                            "EY",
                            "Б1",
                            "\"Деловые решения и технологии\" ex. Deloitte",
                            "Сбер",
                            "EY",
                            "Strategy partners",
                            "ООО «РУСАУДИТ»",
                            "АО Узбекнефтегаз"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33,
                            34,
                            35,
                            36,
                            37,
                            38,
                            39,
                            40,
                            41,
                            42,
                            43,
                            44,
                            45,
                            46,
                            47,
                            48,
                            49,
                            50,
                            51,
                            52,
                            53,
                            54,
                            55,
                            56,
                            57,
                            58,
                            59,
                            60,
                            61,
                            62,
                            63,
                            64,
                            65,
                            66,
                            67,
                            68,
                            69,
                            70,
                            71,
                            72,
                            73,
                            74,
                            75,
                            76,
                            77,
                            78,
                            79,
                            80,
                            81,
                            82,
                            83,
                            84,
                            85,
                            86,
                            87,
                            88,
                            89,
                            90,
                            91,
                            92,
                            93,
                            94,
                            95,
                            96,
                            97,
                            98,
                            99,
                            100,
                            101,
                            102,
                            103,
                            104,
                            105,
                            106,
                            107,
                            108,
                            109,
                            110,
                            111,
                            112,
                            113,
                            114,
                            115,
                            116,
                            117,
                            118,
                            119,
                            120,
                            121,
                            122,
                            123,
                            124,
                            125,
                            126,
                            127,
                            128,
                            129,
                            130,
                            131,
                            132,
                            133,
                            134,
                            135,
                            136,
                            137,
                            138,
                            139,
                            140,
                            141,
                            142,
                            143,
                            144,
                            145,
                            146,
                            147,
                            148,
                            149,
                            150,
                            151,
                            152,
                            153,
                            154,
                            155,
                            156,
                            157,
                            158,
                            159,
                            160,
                            161,
                            162,
                            163,
                            164,
                            165,
                            166,
                            167,
                            168,
                            169,
                            170,
                            171,
                            172,
                            173,
                            174,
                            175,
                            176,
                            177,
                            178,
                            179,
                            180,
                            181,
                            182,
                            183,
                            184,
                            185
                        ],
                        "tickangle": -60,
                        "rangeslider": {
                            "visible": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "rgba(220,220,220,0.9)"
                            },
                            "text": "Млн руб"
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "rgba(220,220,220,0.9)"
                        },
                        "ticktext": [
                            "0",
                            "5",
                            "10",
                            "15",
                            "20",
                            "25",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            5000000,
                            10000000,
                            15000000,
                            20000000,
                            25000000,
                            30000000
                        ],
                        "zeroline": true,
                        "gridcolor": "rgba(255,255,255,0.08)",
                        "zerolinecolor": "rgba(255,255,255,0.25)"
                    },
                    "height": 1000,
                    "legend": {
                        "x": 0.5,
                        "y": 1.02,
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 140,
                        "t": 90
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "white"
                            },
                            "text": "Зарплата в месяц (руб)"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "color": "white"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y"
                    },
                    "barmode": "stack",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#f2f5fa"
                                    },
                                    "error_y": {
                                        "color": "#f2f5fa"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "dark"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "color": "#f2f5fa"
                                }
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        }
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0,
                            "y": 28800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "28.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 1,
                            "y": 22400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "22.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 2,
                            "y": 18000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "18",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 3,
                            "y": 17420000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "17.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 4,
                            "y": 15975000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "16.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 5,
                            "y": 15000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "15",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 6,
                            "y": 13600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "13.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 7,
                            "y": 13000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "13",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 8,
                            "y": 12800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "12.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 9,
                            "y": 12750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "12.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 10,
                            "y": 11900000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "11.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 11,
                            "y": 11050000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "11.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 12,
                            "y": 10800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 13,
                            "y": 10080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 14,
                            "y": 10080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "10.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 15,
                            "y": 9600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 16,
                            "y": 9520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 17,
                            "y": 9300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 18,
                            "y": 9062500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "9.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 19,
                            "y": 8850000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 20,
                            "y": 8400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 21,
                            "y": 8320000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 22,
                            "y": 8250000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 23,
                            "y": 8160000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 24,
                            "y": 8100000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 25,
                            "y": 8000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 26,
                            "y": 7750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 27,
                            "y": 7680000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 28,
                            "y": 7500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 29,
                            "y": 7500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 30,
                            "y": 7310000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "7.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 31,
                            "y": 6750000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 32,
                            "y": 6720000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 33,
                            "y": 6650000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 34,
                            "y": 6510000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 35,
                            "y": 6480000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 36,
                            "y": 6400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 37,
                            "y": 6360000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 38,
                            "y": 6300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 39,
                            "y": 6200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 40,
                            "y": 6090000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 41,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 42,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 43,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 44,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 45,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 46,
                            "y": 6000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 47,
                            "y": 5940000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 48,
                            "y": 5920000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 49,
                            "y": 5696000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 50,
                            "y": 5670000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 51,
                            "y": 5600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 52,
                            "y": 5600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 53,
                            "y": 5550000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 54,
                            "y": 5520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 55,
                            "y": 5478000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 56,
                            "y": 5460000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 57,
                            "y": 5445000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 58,
                            "y": 5400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 59,
                            "y": 5400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 60,
                            "y": 5355000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 61,
                            "y": 5330000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 62,
                            "y": 5200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 63,
                            "y": 5100000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 64,
                            "y": 4987500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 65,
                            "y": 4960000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "5.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 66,
                            "y": 4906800.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 67,
                            "y": 4900000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 68,
                            "y": 4860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 69,
                            "y": 4830000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 70,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 71,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 72,
                            "y": 4800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 73,
                            "y": 4745000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 74,
                            "y": 4695000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 75,
                            "y": 4680000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 76,
                            "y": 4620000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 77,
                            "y": 4560000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 78,
                            "y": 4550000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 79,
                            "y": 4410000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 80,
                            "y": 4400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 81,
                            "y": 4350000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 82,
                            "y": 4350000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 83,
                            "y": 4290000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 84,
                            "y": 4290000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 85,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 86,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 87,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 88,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 89,
                            "y": 4200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 90,
                            "y": 4132500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 91,
                            "y": 4080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 92,
                            "y": 4060000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 93,
                            "y": 4000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 94,
                            "y": 3976000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 95,
                            "y": 3952000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "4.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 96,
                            "y": 3920000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 97,
                            "y": 3915000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 98,
                            "y": 3850000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 99,
                            "y": 3842500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 100,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 101,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 102,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 103,
                            "y": 3780000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 104,
                            "y": 3778500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 105,
                            "y": 3756000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 106,
                            "y": 3654000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 107,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 108,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 109,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 110,
                            "y": 3640000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 111,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 112,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 113,
                            "y": 3600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 114,
                            "y": 3528000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 115,
                            "y": 3520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 116,
                            "y": 3510000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 117,
                            "y": 3500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 118,
                            "y": 3467500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 119,
                            "y": 3307500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 120,
                            "y": 3300000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 121,
                            "y": 3248000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 122,
                            "y": 3220000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 123,
                            "y": 3180000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 124,
                            "y": 3151500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 125,
                            "y": 3150000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 126,
                            "y": 3150000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 127,
                            "y": 3120000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 128,
                            "y": 3080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 129,
                            "y": 3000000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 130,
                            "y": 2880000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 131,
                            "y": 2860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 132,
                            "y": 2835000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 133,
                            "y": 2800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 134,
                            "y": 2800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 135,
                            "y": 2784000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 136,
                            "y": 2775000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 137,
                            "y": 2730000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 138,
                            "y": 2700000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 139,
                            "y": 2639000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 140,
                            "y": 2600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 141,
                            "y": 2502000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 142,
                            "y": 2500000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 143,
                            "y": 2475000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 144,
                            "y": 2400000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 145,
                            "y": 2340000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 146,
                            "y": 2304000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 147,
                            "y": 2280000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 148,
                            "y": 2262000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.3",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 149,
                            "y": 2223000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 150,
                            "y": 2210000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 151,
                            "y": 2160000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 152,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 153,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 154,
                            "y": 2145000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 155,
                            "y": 2080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 156,
                            "y": 2040000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 157,
                            "y": 2028000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 158,
                            "y": 2028000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 159,
                            "y": 1980000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "2.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 160,
                            "y": 1930500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 161,
                            "y": 1900800.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 162,
                            "y": 1860000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 163,
                            "y": 1800000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 164,
                            "y": 1755000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 165,
                            "y": 1690000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 166,
                            "y": 1644300.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 167,
                            "y": 1518000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.5",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 168,
                            "y": 1365000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.4",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 169,
                            "y": 1250000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 170,
                            "y": 1200000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.2",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 171,
                            "y": 1131000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 172,
                            "y": 1120000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 173,
                            "y": 1087500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 174,
                            "y": 1080000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.1",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 175,
                            "y": 1044000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 176,
                            "y": 1040000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 177,
                            "y": 1020000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "1.0",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 178,
                            "y": 912500.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.9",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 179,
                            "y": 840000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 180,
                            "y": 809100.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 181,
                            "y": 804000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.8",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 182,
                            "y": 725000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.7",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 183,
                            "y": 648000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 184,
                            "y": 600000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.6",
                            "yshift": 10,
                            "showarrow": false
                        },
                        {
                            "x": 185,
                            "y": 520000.0,
                            "font": {
                                "size": 10,
                                "color": "#797979"
                            },
                            "text": "0.5",
                            "yshift": 10,
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 1,
                            "y": 1.16,
                            "pad": {
                                "b": 2,
                                "l": 4,
                                "r": 4,
                                "t": 2
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Линия: Вкл",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                false
                                            ]
                                        }
                                    ],
                                    "label": "Линия: Выкл",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "right",
                            "showactive": true
                        }
                    ]
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nikschankin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "n1xon",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-06 19:17:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nikschankin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-09T16:07:46.271107Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jdavis-graphs/3.embed",
            "fid": "jdavis-graphs:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/3/9_DFCEFUKGZ5ZBGV8ZOE5XHIFBYPZWSW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/3/2_FQL2HFP53LERFAU16XCI5S1KQCN1F7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/3/8_37FAP6TJBOSQ0L6OT1JUX3XDAJVD9Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/3/9_DFCEFUKGZ5ZBGV8ZOE5XHIFBYPZWSW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jdavis-graphs:3",
                "plots": "https://api.plotly.com/v2/plots/jdavis-graphs:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=jdavis-graphs"
            },
            "owner": "jdavis-graphs",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jdavis-graphs/3/",
            "world_readable": true,
            "date_modified": "2025-08-09T16:20:41.817Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jdavis-graphs/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "1"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "jdavis-graphs:2:0fdf33",
                        "ysrc": "jdavis-graphs:2:06f49c",
                        "yaxis": "y3",
                        "marker": {
                            "color": "rgba(163, 4, 6, 0.5)"
                        },
                        "orientation": "v",
                        "selectedpoints": [
                            58
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "70.34"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:2:0fdf33",
                        "ysrc": "jdavis-graphs:2:371533"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "76.70"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:2:0fdf33",
                        "ysrc": "jdavis-graphs:2:a74e1a",
                        "yaxis": "y",
                        "stackgroup": null,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "1"
                                    }
                                },
                                "type": "filter",
                                "value": "0",
                                "enabled": false,
                                "operation": "=",
                                "targetsrc": "jdavis-graphs:2:06f49c"
                            }
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "70.52"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:2:0fdf33",
                        "ysrc": "jdavis-graphs:2:0e691b",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "77.70"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:2:0fdf33",
                        "ysrc": "jdavis-graphs:2:c945e4",
                        "yaxis": "y2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Grain Brain Humidity and temperature"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            58.5
                        ],
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "zeroline": true,
                        "autorange": true,
                        "rangeslider": {
                            "yaxis": {},
                            "yaxis2": {},
                            "yaxis3": {},
                            "visible": false
                        },
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            66.60555555555555,
                            84.49444444444444
                        ],
                        "title": {
                            "text": "Humidity"
                        },
                        "domain": [
                            0.5,
                            1
                        ],
                        "autorange": true,
                        "showticklabels": true
                    },
                    "bargap": 0,
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            68.39999999999999,
                            82.4
                        ],
                        "title": {
                            "text": "Temp"
                        },
                        "domain": [
                            0,
                            0.5
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "yaxis3": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0,
                            1.0526315789473684
                        ],
                        "title": {
                            "text": "Click to enter Y axis title"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": false,
                        "showticklabels": false
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event+select",
                    "hovermode": "closest",
                    "bargroupgap": 0,
                    "plot_bgcolor": "rgba(255, 255, 255, 0)",
                    "paper_bgcolor": "rgba(255, 255, 255, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jdavis-graphs",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-09 15:33:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jdavis-graphs",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-09T15:43:39.830480Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jdavis-graphs/1.embed",
            "fid": "jdavis-graphs:1",
            "filename": "grain brain data plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/1/9_0KHOEOO0HXC5OEUM7AP9FJUWOSLDAO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/1/2_BFR4CQKB3QGH5K9P62DKZR8DOAFBD0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/1/8_GXJY1BYMMIET7P75ACSCSM05X8DOJ2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jdavis-graphs/1/9_0KHOEOO0HXC5OEUM7AP9FJUWOSLDAO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jdavis-graphs:1",
                "plots": "https://api.plotly.com/v2/plots/jdavis-graphs:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jdavis-graphs"
            },
            "owner": "jdavis-graphs",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jdavis-graphs/1/",
            "world_readable": true,
            "date_modified": "2025-08-09T15:43:39.841Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jdavis-graphs/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "70.34"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:0:05c174",
                        "ysrc": "jdavis-graphs:0:668f44"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "76.70"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:0:05c174",
                        "ysrc": "jdavis-graphs:0:4226d1",
                        "yaxis": "y",
                        "stackgroup": null,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "1"
                                    }
                                },
                                "type": "filter",
                                "value": "0",
                                "enabled": true,
                                "operation": "=",
                                "targetsrc": "jdavis-graphs:0:57c26f"
                            }
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "70.52"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:0:05c174",
                        "ysrc": "jdavis-graphs:0:b8c082",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "12:46:23",
                                "y": "77.70"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:0:05c174",
                        "ysrc": "jdavis-graphs:0:fcef48",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "1",
                                "y": "12:46:23"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "jdavis-graphs:0:57c26f",
                        "ysrc": "jdavis-graphs:0:05c174",
                        "yaxis": "y2",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            60
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            69.41333333333333,
                            84.34666666666666
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            68.39999999999999,
                            82.4
                        ],
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jdavis-graphs",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-09 15:33:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jdavis-graphs",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}