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=cD0yMDI1LTA4LTE3KzE4JTNBNDclM0E0MC4zOTM5OTQlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTE3KzEyJTNBMTUlM0EzMi4xNjM1NDklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xNysxOCUzQTQzJTNBNTkuMDQ2Mzc5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-17T18:43:59.046379Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~maylispeyret/140.embed",
            "fid": "maylispeyret:140",
            "filename": "prix phd scenarios ch4",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/maylispeyret:140/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/140/2_8PVHJ78EHRK5S7N5TS8PWBIBNDY97B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/140/8_4D87GJD7VPPZJXXCQ6LC9U7NBE82SJ.png",
                "list-thumb": "https://api.plotly.com/v2/files/maylispeyret:140/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/maylispeyret:140",
                "plots": "https://api.plotly.com/v2/plots/maylispeyret:140",
                "parent": "https://api.plotly.com/v2/folders/home?user=maylispeyret"
            },
            "owner": "maylispeyret",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~maylispeyret/140/",
            "world_readable": true,
            "date_modified": "2025-08-17T18:47:34.063Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~maylispeyret/140/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a98f47",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Historic data (real price)",
                        "type": "scatter",
                        "xsrc": "maylispeyret:139:ce3635",
                        "ysrc": "maylispeyret:139:388a30",
                        "stackgroup": null
                    },
                    {
                        "uid": "b960b1",
                        "line": {
                            "color": "rgb(226, 107, 9)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "NZE"
                            }
                        },
                        "mode": "lines",
                        "name": "Net Zero Emissions by 2050 (NZE)",
                        "type": "scatter",
                        "xsrc": "maylispeyret:139:ce3635",
                        "ysrc": "maylispeyret:139:3a9a17",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "uid": "87573d",
                        "line": {
                            "color": "rgb(97, 41, 155)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "BAU"
                            }
                        },
                        "mode": "lines",
                        "name": "'Business as usual' (BAU)",
                        "type": "scatter",
                        "xsrc": "maylispeyret:139:ce3635",
                        "ysrc": "maylispeyret:139:0e1afb",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "uid": "07b4ca",
                        "line": {
                            "color": "rgb(37, 170, 87)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "APS"
                            }
                        },
                        "mode": "lines",
                        "name": "Announced Pledges (APS)",
                        "type": "scatter",
                        "xsrc": "maylispeyret:139:ce3635",
                        "ysrc": "maylispeyret:139:664ae4",
                        "stackgroup": null
                    },
                    {
                        "uid": "5092e7",
                        "line": {
                            "color": "rgb(0, 112, 192)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "STEPS"
                            }
                        },
                        "mode": "lines",
                        "name": "Stated policies (STEPS)",
                        "type": "scatter",
                        "xsrc": "maylispeyret:139:ce3635",
                        "ysrc": "maylispeyret:139:838c6b",
                        "stackgroup": null
                    },
                    {
                        "uid": "3ac0c4",
                        "line": {
                            "dash": "longdash",
                            "width": 1
                        },
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "a98f47",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 4.4369368193315015,
                                        "value": 52.13734953691586
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 8761.524104337812,
                                        "value": -100325.90100846646
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "5b8a55",
                        "line": {
                            "dash": "longdash",
                            "width": 2
                        },
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "5092e7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 13.417771355045323,
                                        "value": 113.89570564514638
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 27305.428446222577,
                                        "value": -223788.66711690516
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "7c0e3d",
                        "line": {
                            "dash": "longdash",
                            "width": 2
                        },
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "07b4ca",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 18.71192685708621,
                                        "value": -32.309939515965766
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 38079.13895440072,
                                        "value": 74555.30465692581
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "ab4337",
                        "line": {
                            "dash": "longdash",
                            "color": "rgb(165, 86, 221)",
                            "width": 2
                        },
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "87573d",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 14.134060791832649,
                                        "value": 261.9690927421938
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 28763.091529415662,
                                        "value": -521200.36469810636
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "5776b5",
                        "line": {
                            "dash": "longdash",
                            "width": 2
                        },
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "b960b1",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 36.944458680900595,
                                        "value": 79.53619758125542
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 75182.69959313958,
                                        "value": -149169.1056262419
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Simulated price curves per energy transition policy scenario, including secondary supply of recycled copper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2019.7451125379162,
                            2050.0821107624265
                        ],
                        "title": {
                            "text": " "
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            4187.064154437925,
                            78502.28431633266
                        ],
                        "title": {
                            "text": "Price"
                        },
                        "autorange": false,
                        "showticklabels": true
                    },
                    "legend": {
                        "x": 0.022808988764044948,
                        "y": 0.9867806255169901
                    },
                    "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/~maylispeyret",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-05-21 19:41:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "maylispeyret",
                "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-17T17:38:02.990798Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tfinucci/1.embed",
            "fid": "tfinucci:1",
            "filename": "ranking_causas_muerte_animado",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/tfinucci:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tfinucci/1/2_JYEBDBS3JGBZ8ZUDAM0QR1CHY5KBM4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tfinucci/1/8_IJ6BSTQ42APTGZY3035G6KDXEVKV2A.png",
                "list-thumb": "https://api.plotly.com/v2/files/tfinucci:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tfinucci:1",
                "plots": "https://api.plotly.com/v2/plots/tfinucci:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=tfinucci"
            },
            "owner": "tfinucci",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tfinucci/1/",
            "world_readable": true,
            "date_modified": "2025-08-17T17:38:03.000Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tfinucci/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Other",
                        "type": "bar",
                        "xsrc": "tfinucci:0:33a156",
                        "ysrc": "tfinucci:0:6558ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.25)",
                                "width": 0.5
                            },
                            "color": "lightgrey",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "tfinucci:0:c786a4",
                        "showlegend": true,
                        "legendgroup": "Other",
                        "offsetgroup": "Other",
                        "orientation": "h",
                        "textposition": "outside",
                        "hovertemplate": "role=Other<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Top2",
                        "type": "bar",
                        "xsrc": "tfinucci:0:9895aa",
                        "ysrc": "tfinucci:0:b936fd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.25)",
                                "width": 0.5
                            },
                            "color": "#1f77b4",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "tfinucci:0:5d7bfb",
                        "showlegend": true,
                        "legendgroup": "Top2",
                        "offsetgroup": "Top2",
                        "orientation": "h",
                        "textposition": "outside",
                        "hovertemplate": "role=Top2<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Top3",
                        "type": "bar",
                        "xsrc": "tfinucci:0:b8bd86",
                        "ysrc": "tfinucci:0:276949",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.25)",
                                "width": 0.5
                            },
                            "color": "#2ca02c",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "tfinucci:0:09e3e4",
                        "showlegend": true,
                        "legendgroup": "Top3",
                        "offsetgroup": "Top3",
                        "orientation": "h",
                        "textposition": "outside",
                        "hovertemplate": "role=Top3<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Top1",
                        "type": "bar",
                        "xsrc": "tfinucci:0:a2e042",
                        "ysrc": "tfinucci:0:2f52b6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.25)",
                                "width": 0.5
                            },
                            "color": "#d62728",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "tfinucci:0:894fe0",
                        "showlegend": true,
                        "legendgroup": "Top1",
                        "offsetgroup": "Top1",
                        "orientation": "h",
                        "textposition": "outside",
                        "hovertemplate": "role=Top1<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:c8f206",
                                "ysrc": "tfinucci:0:1a0772",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:7ec44a",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7ae856",
                                "ysrc": "tfinucci:0:e48cab",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:7db68c",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:4d8c36",
                                "ysrc": "tfinucci:0:8bb24c",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:5fd280",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:0e6a12",
                                "ysrc": "tfinucci:0:7a30a2",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:8144fd",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1990<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1990"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:5f93eb",
                                "ysrc": "tfinucci:0:5fd69f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:c7964b",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1991<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:16db5f",
                                "ysrc": "tfinucci:0:b376a8",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:102060",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1991<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7d317d",
                                "ysrc": "tfinucci:0:6fd087",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a3786d",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1991<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:9226e0",
                                "ysrc": "tfinucci:0:8c6f54",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:077ab3",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1991<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1991"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:dd7a1e",
                                "ysrc": "tfinucci:0:78e3e6",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:0b0cc0",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1992<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:63927c",
                                "ysrc": "tfinucci:0:d8df13",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:214aab",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1992<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:02deef",
                                "ysrc": "tfinucci:0:d2b174",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:34d119",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1992<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:1e7572",
                                "ysrc": "tfinucci:0:6d6465",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3a065e",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1992<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1992"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:575ab4",
                                "ysrc": "tfinucci:0:da0ca9",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:1f6d38",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1993<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f41a6a",
                                "ysrc": "tfinucci:0:5f1e59",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:5c3c53",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1993<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:622db6",
                                "ysrc": "tfinucci:0:7ec9fb",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e8b595",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1993<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:b000d3",
                                "ysrc": "tfinucci:0:d01ace",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e3c556",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1993<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1993"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:96fc74",
                                "ysrc": "tfinucci:0:919bc7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:67f566",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1994<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f58b13",
                                "ysrc": "tfinucci:0:6eb8ce",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:cf44ae",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1994<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:3b4951",
                                "ysrc": "tfinucci:0:a81b93",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:34a801",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1994<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:75ca5d",
                                "ysrc": "tfinucci:0:ba8b80",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:42147b",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1994<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1994"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:a6d8ff",
                                "ysrc": "tfinucci:0:ac7ec8",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:82b75f",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1995<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:2068a1",
                                "ysrc": "tfinucci:0:71899f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:bafd4d",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1995<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:9b5874",
                                "ysrc": "tfinucci:0:c6ee6a",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:421eb1",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1995<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:3db05d",
                                "ysrc": "tfinucci:0:f22668",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:759e83",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1995<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1995"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:dc93f9",
                                "ysrc": "tfinucci:0:aaa2d3",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6cbfce",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1996<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:af1bb8",
                                "ysrc": "tfinucci:0:b2769f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:556471",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1996<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:b70bc0",
                                "ysrc": "tfinucci:0:b643d0",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:b3074b",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1996<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:6768c7",
                                "ysrc": "tfinucci:0:18ed7b",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:099a4c",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1996<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1996"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:86cb81",
                                "ysrc": "tfinucci:0:351996",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:8c6df4",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1997<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:86ab8c",
                                "ysrc": "tfinucci:0:4f7ea6",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:f897b0",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1997<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f0e605",
                                "ysrc": "tfinucci:0:1534bb",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a162f5",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1997<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:dff582",
                                "ysrc": "tfinucci:0:60e959",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:0ebac7",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1997<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1997"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f01878",
                                "ysrc": "tfinucci:0:6f3215",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:eeda98",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1998<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:193dc4",
                                "ysrc": "tfinucci:0:297d72",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:fb2dad",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1998<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:46a3a3",
                                "ysrc": "tfinucci:0:5ad0da",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:2478e2",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1998<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:03b252",
                                "ysrc": "tfinucci:0:52aa5e",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a59444",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1998<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1998"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:563ca4",
                                "ysrc": "tfinucci:0:e0e75d",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:4d0956",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=1999<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7183a0",
                                "ysrc": "tfinucci:0:3ca51f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:bbfc60",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=1999<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:84ae79",
                                "ysrc": "tfinucci:0:464d74",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:18228d",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=1999<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:0d27f7",
                                "ysrc": "tfinucci:0:cc8051",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:584d07",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=1999<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "1999"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:dd4d87",
                                "ysrc": "tfinucci:0:b4cfd5",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:4aea05",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2000<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7339e9",
                                "ysrc": "tfinucci:0:21a997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:09d4d9",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2000<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:c82ec4",
                                "ysrc": "tfinucci:0:bf316f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:2a684a",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2000<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d36212",
                                "ysrc": "tfinucci:0:95052e",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:10e30b",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2000<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2000"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:9039fe",
                                "ysrc": "tfinucci:0:110b4c",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:4088c9",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2001<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d6f38f",
                                "ysrc": "tfinucci:0:7634dc",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:05d02b",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2001<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:a6d268",
                                "ysrc": "tfinucci:0:cd88db",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:8fc9fc",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2001<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7054af",
                                "ysrc": "tfinucci:0:6cadf9",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:72a72d",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2001<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2001"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d8fe92",
                                "ysrc": "tfinucci:0:e65b6d",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:62debf",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2002<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f9a6bf",
                                "ysrc": "tfinucci:0:6ac308",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6d09e4",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2002<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:118baf",
                                "ysrc": "tfinucci:0:df0dfc",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:d4029c",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2002<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:986327",
                                "ysrc": "tfinucci:0:c3b4ed",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:c1c885",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2002<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2002"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:2319ce",
                                "ysrc": "tfinucci:0:1c2606",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:f2afd9",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2003<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:502a44",
                                "ysrc": "tfinucci:0:0eda6a",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:88c88f",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2003<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:a02ce7",
                                "ysrc": "tfinucci:0:29fa2f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6e1ea6",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2003<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d496c9",
                                "ysrc": "tfinucci:0:96ae92",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e2a7d4",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2003<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2003"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:9b0875",
                                "ysrc": "tfinucci:0:ceead9",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:f2e506",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2004<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d1fb6f",
                                "ysrc": "tfinucci:0:e5daf4",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:c272a9",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2004<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:6403a0",
                                "ysrc": "tfinucci:0:4bb8c5",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e42940",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2004<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:67fc75",
                                "ysrc": "tfinucci:0:030c81",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:7ae5cc",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2004<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2004"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:727049",
                                "ysrc": "tfinucci:0:230ce6",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:438fa5",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2005<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:b9d673",
                                "ysrc": "tfinucci:0:3267ed",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:0d333b",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2005<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f8fba8",
                                "ysrc": "tfinucci:0:9df646",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:05362d",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2005<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:799945",
                                "ysrc": "tfinucci:0:34eaf7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:dbd28f",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2005<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2005"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ee07aa",
                                "ysrc": "tfinucci:0:1c782b",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:18888d",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2006<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d3bfbe",
                                "ysrc": "tfinucci:0:cc43bb",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:593396",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2006<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:e4795d",
                                "ysrc": "tfinucci:0:242c14",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6a5296",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2006<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:20b093",
                                "ysrc": "tfinucci:0:f7adcb",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a0909d",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2006<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2006"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:3ab294",
                                "ysrc": "tfinucci:0:47a2f1",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:aaac35",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2007<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:33e643",
                                "ysrc": "tfinucci:0:650e01",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:2d7a78",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2007<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ccb844",
                                "ysrc": "tfinucci:0:d355fc",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:ce0ea4",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2007<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:7232ca",
                                "ysrc": "tfinucci:0:c8f297",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:24daeb",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2007<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2007"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:8d6e4c",
                                "ysrc": "tfinucci:0:7719e1",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3ea5fd",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2008<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:77be3d",
                                "ysrc": "tfinucci:0:e91aa0",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:03f591",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2008<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:13d953",
                                "ysrc": "tfinucci:0:257170",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3cc852",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2008<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:e378f8",
                                "ysrc": "tfinucci:0:32ecaf",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:fcdb3a",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2008<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2008"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ce2666",
                                "ysrc": "tfinucci:0:9b6f9e",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:0d0191",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2009<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:0b20c6",
                                "ysrc": "tfinucci:0:94732b",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a2d6b1",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2009<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:fea6d1",
                                "ysrc": "tfinucci:0:37dd8d",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3cf028",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2009<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:e2a78b",
                                "ysrc": "tfinucci:0:fc1437",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:821abd",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2009<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2009"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:08106e",
                                "ysrc": "tfinucci:0:c81e45",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:78d847",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2010<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:354410",
                                "ysrc": "tfinucci:0:e7a962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:259e0f",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2010<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:71f016",
                                "ysrc": "tfinucci:0:dbc386",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:b65d1d",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2010<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:1f03c1",
                                "ysrc": "tfinucci:0:f64cd7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:2691d9",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2010<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2010"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:a097a7",
                                "ysrc": "tfinucci:0:d45879",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3067fa",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2011<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:031d1c",
                                "ysrc": "tfinucci:0:645a08",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:ef972a",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2011<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:5e972a",
                                "ysrc": "tfinucci:0:0f7e20",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:b201cc",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2011<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ec9546",
                                "ysrc": "tfinucci:0:1a63e7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:d9f9bb",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2011<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2011"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:442980",
                                "ysrc": "tfinucci:0:acb1da",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6a4ad1",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2012<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:58f661",
                                "ysrc": "tfinucci:0:1e4f1e",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:2c7517",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2012<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d120b3",
                                "ysrc": "tfinucci:0:e7c04f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:1613b5",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2012<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:576170",
                                "ysrc": "tfinucci:0:a3fd46",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:72b16a",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2012<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2012"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:d66a81",
                                "ysrc": "tfinucci:0:690d58",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:6e0a9e",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2013<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:2a8371",
                                "ysrc": "tfinucci:0:6d2611",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:c3b52c",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2013<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:cfd596",
                                "ysrc": "tfinucci:0:6b470d",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:ba2e5a",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2013<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:48d0fa",
                                "ysrc": "tfinucci:0:a34d57",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:cb7893",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2013<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2013"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:19e3a6",
                                "ysrc": "tfinucci:0:6b31e2",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:c96dea",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2014<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:0e353e",
                                "ysrc": "tfinucci:0:8c00ba",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:72c792",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2014<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ca213e",
                                "ysrc": "tfinucci:0:a1ea34",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:782cc4",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2014<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:da871b",
                                "ysrc": "tfinucci:0:e64f15",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:b9e954",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2014<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2014"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:ed1fda",
                                "ysrc": "tfinucci:0:add8de",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a0d076",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2015<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:59057b",
                                "ysrc": "tfinucci:0:8e0d5f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:7b5800",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2015<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:8da8be",
                                "ysrc": "tfinucci:0:c545a7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:cad1fc",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2015<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:63f410",
                                "ysrc": "tfinucci:0:0b8323",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e9af46",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2015<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2015"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:a550e6",
                                "ysrc": "tfinucci:0:0a74d8",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:19411f",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2016<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:545949",
                                "ysrc": "tfinucci:0:318117",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:e7fe2f",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2016<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:edef82",
                                "ysrc": "tfinucci:0:f368ca",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:b21936",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2016<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:487aa2",
                                "ysrc": "tfinucci:0:9ecab6",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:a66771",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2016<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2016"
                    },
                    {
                        "data": [
                            {
                                "name": "Other",
                                "type": "bar",
                                "xsrc": "tfinucci:0:8dae82",
                                "ysrc": "tfinucci:0:03b879",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "lightgrey",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:375f64",
                                "showlegend": true,
                                "legendgroup": "Other",
                                "offsetgroup": "Other",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Other<br>Year=2017<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top2",
                                "type": "bar",
                                "xsrc": "tfinucci:0:f88716",
                                "ysrc": "tfinucci:0:393d1f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#1f77b4",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:770d98",
                                "showlegend": true,
                                "legendgroup": "Top2",
                                "offsetgroup": "Top2",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top2<br>Year=2017<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top3",
                                "type": "bar",
                                "xsrc": "tfinucci:0:5f09df",
                                "ysrc": "tfinucci:0:42cca0",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#2ca02c",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:3033f8",
                                "showlegend": true,
                                "legendgroup": "Top3",
                                "offsetgroup": "Top3",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top3<br>Year=2017<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            },
                            {
                                "name": "Top1",
                                "type": "bar",
                                "xsrc": "tfinucci:0:24242c",
                                "ysrc": "tfinucci:0:1b1165",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "color": "#d62728",
                                    "pattern": {
                                        "shape": ""
                                    }
                                },
                                "textsrc": "tfinucci:0:30e0a9",
                                "showlegend": true,
                                "legendgroup": "Top1",
                                "offsetgroup": "Top1",
                                "orientation": "h",
                                "textposition": "auto",
                                "hovertemplate": "role=Top1<br>Year=2017<br>Deaths=%{x}<br>Cause=%{y}<br>label=%{text}<extra></extra>",
                                "alignmentgroup": "True"
                            }
                        ],
                        "name": "2017"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Evolución del ranking de causas de muerte (<5 años)"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Deaths"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Cause"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "categoryarray": [
                            "Lower respiratory infections",
                            "Diarrheal diseases",
                            "Neonatal preterm birth complications",
                            "Neonatal encephalopathy due to birth asphyxia and trauma",
                            "Congenital birth defects",
                            "Measles",
                            "Other neonatal disorders",
                            "Malaria",
                            "Nutritional deficiencies",
                            "Meningitis",
                            "Neonatal sepsis and other neonatal infections",
                            "Drowning",
                            "Tuberculosis",
                            "Whooping cough",
                            "Road injuries",
                            "Digestive diseases",
                            "Neoplasms",
                            "Cardiovascular diseases",
                            "HIV/AIDS",
                            "Fire, heat, and hot substances",
                            "Hepatitis",
                            "Chronic kidney disease",
                            "Interpersonal violence",
                            "Cirrhosis and other chronic liver diseases",
                            "Exposure to forces of nature",
                            "Environmental heat and cold exposure",
                            "Diabetes mellitus"
                        ],
                        "categoryorder": "array"
                    },
                    "height": 900,
                    "legend": {
                        "title": {
                            "text": "role"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "b": 50,
                        "l": 250,
                        "r": 100,
                        "t": 80
                    },
                    "barmode": "relative",
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "1990"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1990",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1991"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1991",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1992"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1992",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1993"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1993",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1994"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1994",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1995"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1995",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1996"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1996",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2000"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2000",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2001"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2001",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2002"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2002",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2003"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2003",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2004"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2004",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2005"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2005",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2006"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2006",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2007"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2007",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2008"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2008",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2009"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2009",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2010"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2010",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2011"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2011",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2012"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2012",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2013"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2013",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2014"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2014",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2015"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2015",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2016"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2016",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2017"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2017",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "Year="
                            }
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "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",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "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": "#E5ECF6",
                                            "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": {
                                        "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
                                    },
                                    "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": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "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": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false,
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": 900,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tfinucci",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-17 17:32:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tfinucci",
                "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-17T16:11:21.474648Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~schen08816/13.embed",
            "fid": "schen08816:13",
            "filename": "SC-VC in EV",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/schen08816:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/schen08816:13/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/schen08816:13/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/schen08816:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/schen08816:13",
                "plots": "https://api.plotly.com/v2/plots/schen08816:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=schen08816"
            },
            "owner": "schen08816",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~schen08816/13/",
            "world_readable": true,
            "date_modified": "2025-08-18T00:30:37.342Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~schen08816/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SF Zoo, x; LA Zoo, x",
                                "y": "For NMC/NCA Type"
                            }
                        },
                        "name": "NMC/NCA&nbsp;",
                        "type": "bar",
                        "xsrc": "schen08816:12:3a39c9",
                        "ysrc": "schen08816:12:e6ea5e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SF Zoo, x; LA Zoo, x",
                                "y": "For LFP Type"
                            }
                        },
                        "name": "LFP",
                        "type": "bar",
                        "xsrc": "schen08816:12:3a39c9",
                        "ysrc": "schen08816:12:117f2b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 40
                        },
                        "text": "<b>Venture Capital Investments in Battery Tech by Year and Chemistry</b>"
                    },
                    "xaxis": {
                        "type": "date",
                        "dtick": "M12",
                        "range": [
                            "2010-07-02 12:00",
                            "2025-07-02 12:00"
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            }
                        },
                        "nticks": 0,
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "tickmode": "linear",
                        "autorange": true,
                        "rangeselector": {
                            "visible": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "log",
                        "range": [
                            6.827156571992302,
                            9.038394004491542
                        ],
                        "tick0": 0,
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "¥ RMB &nbsp;in Log Scale"
                        },
                        "nticks": 5,
                        "tickfont": {
                            "size": 15
                        },
                        "tickmode": "linear",
                        "autorange": true,
                        "tickangle": "auto",
                        "automargin": true,
                        "tickformat": "",
                        "tickprefix": "",
                        "ticksuffix": "",
                        "exponentformat": "B"
                    },
                    "legend": {
                        "x": 0.03013242676433601,
                        "y": 1.0026631158455392,
                        "font": {
                            "size": 30
                        },
                        "title": {
                            "text": "<br>"
                        },
                        "borderwidth": 0
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~schen08816",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-24 17:03:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "schen08816",
                "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-17T14:59:58.474939Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LeviCarlos/1.embed",
            "fid": "LeviCarlos:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/LeviCarlos:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LeviCarlos/1/2_85UPTZO8M21YVVHT4DMNACLU2XZNMZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LeviCarlos/1/8_UXUX7UWUEIW4LVUBL81Z55U5WX0JWL.png",
                "list-thumb": "https://api.plotly.com/v2/files/LeviCarlos:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LeviCarlos:1",
                "plots": "https://api.plotly.com/v2/plots/LeviCarlos:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=LeviCarlos"
            },
            "owner": "LeviCarlos",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LeviCarlos/1/",
            "world_readable": true,
            "date_modified": "2025-08-17T14:59:58.486Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LeviCarlos/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Taxa de deformação",
                                "y": "Taxa de cisalhamento"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "LeviCarlos:0:634beb",
                        "ysrc": "LeviCarlos:0:32263b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Tensao de cisalhamento X taxa de deformação do oléo de palma"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            50
                        ],
                        "title": {
                            "text": "dv/dy (s-1)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -15.61888888888889,
                            296.75888888888886
                        ],
                        "title": {
                            "text": "T1 (Pa)"
                        },
                        "autorange": true
                    },
                    "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"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LeviCarlos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-17 14:47:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LeviCarlos",
                "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-17T14:36:20.881855Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ratha/22.embed",
            "fid": "ratha:22",
            "filename": "Plot 22",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ratha:22/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ratha/22/2_Y27QJ64S4LFHWI9UEGKQ4I21ZQ18S4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ratha/22/8_LVJCUIP4OO03TCR00BHNS94BEY8J9Q.png",
                "list-thumb": "https://api.plotly.com/v2/files/ratha:22/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ratha:22",
                "plots": "https://api.plotly.com/v2/plots/ratha:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=ratha"
            },
            "owner": "ratha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ratha/22/",
            "world_readable": true,
            "date_modified": "2025-08-17T14:36:20.896Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ratha/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ratha:21:dc5591",
                        "ysrc": "ratha:21:bd821e"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            359.4545454545454
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.054735929523197155,
                            0.25515996184133594
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ratha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-15 19:13:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ratha",
                "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-17T14:31:08.086769Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~malemany/32.embed",
            "fid": "malemany:32",
            "filename": "CTG_n=1_to_3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/malemany:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/malemany/32/2_UBUMGA39OE7EZASJCFQAM9XNCD99FM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/32/8_WP5TR7Z4HTV1LF371BQHDZ3XYXZV1U.png",
                "list-thumb": "https://api.plotly.com/v2/files/malemany:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/malemany:32",
                "plots": "https://api.plotly.com/v2/plots/malemany:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=malemany"
            },
            "owner": "malemany",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~malemany/32/",
            "world_readable": true,
            "date_modified": "2025-08-17T16:52:28.753Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~malemany/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "6h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:2cbeb4",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(255, 255, 255)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 20,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "error_y": {
                            "value": 9,
                            "width": 5,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "hoverinfo": "x+y+name",
                        "legendgroup": 1,
                        "orientation": "v",
                        "hovertemplate": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "24h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:b7e0bb",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(217, 217, 217)"
                        },
                        "error_y": {
                            "value": 14,
                            "width": 5,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "48h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:b7e0bb",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(145, 145, 145)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 22,
                            "width": 7,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "error_y": {
                            "value": 14,
                            "width": 5,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "name": "72h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:92f3d9",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(0, 0, 0)"
                        },
                        "error_y": {
                            "value": 15,
                            "width": 5,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(87, 87, 87)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(105, 105, 105)"
                            }
                        },
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(125, 125, 125)",
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                3.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "spikethickness": 18,
                        "separatethousands": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            15944.978947368421
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(105, 105, 105)"
                            }
                        },
                        "nticks": 5,
                        "showline": false,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "automargin": true,
                        "showexponent": "none",
                        "exponentformat": "none",
                        "showticklabels": true,
                        "separatethousands": true
                    },
                    "legend": {
                        "x": 1,
                        "y": 0.5,
                        "font": {
                            "color": "rgb(77, 77, 77)"
                        },
                        "bordercolor": "rgb(0, 0, 0)",
                        "orientation": "v",
                        "tracegroupgap": 5
                    },
                    "margin": {
                        "pad": 0
                    },
                    "barmode": "group",
                    "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"
                    },
                    "bargroupgap": 0.15
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~malemany",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-17 15:39:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "malemany",
                "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-17T14:19:37.773810Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~malemany/31.embed",
            "fid": "malemany:31",
            "filename": "CTG_n=_1_to_3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/malemany:31/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/malemany:31/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/malemany:31/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/malemany:31/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/malemany:31",
                "plots": "https://api.plotly.com/v2/plots/malemany:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=malemany"
            },
            "owner": "malemany",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~malemany/31/",
            "world_readable": true,
            "date_modified": "2025-08-17T16:52:28.080Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~malemany/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "6h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:2cbeb4",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(255, 255, 255)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 20,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "error_y": {
                            "value": 20,
                            "width": 7,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "hoverinfo": "x+y+name",
                        "legendgroup": 1,
                        "orientation": "v",
                        "hovertemplate": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "24h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:b7e0bb",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(217, 217, 217)"
                        },
                        "error_y": {
                            "value": 23,
                            "width": 7,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "48h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:b7e0bb",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(145, 145, 145)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 22,
                            "width": 7,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "error_y": {
                            "value": 22,
                            "width": 7,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "name": "72h",
                        "type": "bar",
                        "xsrc": "malemany:30:c83df2",
                        "ysrc": "malemany:30:92f3d9",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(0, 0, 0)"
                        },
                        "error_y": {
                            "value": 25,
                            "width": 7,
                            "visible": true,
                            "symmetric": false,
                            "thickness": 1,
                            "valueminus": 0
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                3.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "spikethickness": 18,
                        "separatethousands": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            317415250.1052632
                        ],
                        "nticks": 5,
                        "showline": false,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "automargin": true,
                        "showexponent": "none",
                        "exponentformat": "none",
                        "showticklabels": true,
                        "separatethousands": true
                    },
                    "barmode": "group",
                    "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"
                    },
                    "bargroupgap": 0
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~malemany",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-17 15:39:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "malemany",
                "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-17T13:48:50.815935Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ratha/20.embed",
            "fid": "ratha:20",
            "filename": "Plot 20",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ratha:20/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ratha:20/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ratha/20/8_2WHUV1QOM4M7ZSU8E6NCFP3NBRBM7A.png",
                "list-thumb": "https://api.plotly.com/v2/files/ratha:20/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ratha:20",
                "plots": "https://api.plotly.com/v2/plots/ratha:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=ratha"
            },
            "owner": "ratha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ratha/20/",
            "world_readable": true,
            "date_modified": "2025-08-17T13:48:50.832Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ratha/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ratha:19:53d8ed",
                        "ysrc": "ratha:19:a00e48"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.7127505082776651,
                            358.99258046629524
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.06914908778843389,
                            0.28770233602098644
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ratha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-15 19:13:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ratha",
                "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-17T12:29:27.279040Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ratha/16.embed",
            "fid": "ratha:16",
            "filename": "Plot 16",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ratha:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ratha:16/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ratha/16/8_1KDWS15F8F8ZMPALM1RGMWNE75ASDZ.png",
                "list-thumb": "https://api.plotly.com/v2/files/ratha:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ratha:16",
                "plots": "https://api.plotly.com/v2/plots/ratha:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=ratha"
            },
            "owner": "ratha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ratha/16/",
            "world_readable": true,
            "date_modified": "2025-08-17T12:29:27.293Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ratha/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ratha:15:4925b5",
                        "ysrc": "ratha:15:73eb3c"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1.708408386288916,
                            358.1354945150605
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.08236462113060994,
                            0.11236947540935358
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ratha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-15 19:13:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ratha",
                "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-17T12:15:32.163549Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wangjingust/2.embed",
            "fid": "wangjingust:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/wangjingust:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/wangjingust:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wangjingust/2/8_8338BA2HGA9EVGS7CC0VLTOXK5Z4P8.png",
                "list-thumb": "https://api.plotly.com/v2/files/wangjingust:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wangjingust:2",
                "plots": "https://api.plotly.com/v2/plots/wangjingust:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=wangjingust"
            },
            "owner": "wangjingust",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~wangjingust/2/",
            "world_readable": true,
            "date_modified": "2025-08-17T14:28:43.474Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wangjingust/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "asrc": "wangjingust:1:942be0",
                        "bsrc": "wangjingust:1:c2a3b8",
                        "csrc": "wangjingust:1:1affb9",
                        "meta": {
                            "columnNames": {
                                "a": "A",
                                "b": "B",
                                "c": "C",
                                "text": "D",
                                "marker": {
                                    "size": "D",
                                    "color": "D"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "25%",
                        "type": "scatterternary",
                        "marker": {
                            "cmax": 150866,
                            "cmin": 12140,
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "D",
                                    "color": "D"
                                }
                            },
                            "cauto": false,
                            "opacity": 1,
                            "sizeref": 333.3333333333333,
                            "sizesrc": "wangjingust:1:c7a421",
                            "colorbar": {
                                "x": 0.7658256029684601,
                                "y": 0.5
                            },
                            "colorsrc": "wangjingust:1:c7a421",
                            "sizemode": "area",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.1111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.2222222222222222,
                                    "#3e4989"
                                ],
                                [
                                    0.3333333333333333,
                                    "#31688e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#26828e"
                                ],
                                [
                                    0.5555555555555556,
                                    "#1f9e89"
                                ],
                                [
                                    0.6666666666666666,
                                    "#35b779"
                                ],
                                [
                                    0.7777777777777778,
                                    "#6ece58"
                                ],
                                [
                                    0.8888888888888888,
                                    "#b5de2b"
                                ],
                                [
                                    1,
                                    "#fde725"
                                ]
                            ],
                            "reversescale": true
                        },
                        "hoveron": "points",
                        "subplot": "ternary",
                        "textsrc": "wangjingust:1:c7a421",
                        "visible": "legendonly",
                        "hoverinfo": "a+b+c",
                        "showlegend": true,
                        "legendgroup": 1,
                        "autocolorscale": false
                    },
                    {
                        "asrc": "wangjingust:1:942be0",
                        "bsrc": "wangjingust:1:c2a3b8",
                        "csrc": "wangjingust:1:1affb9",
                        "meta": {
                            "columnNames": {
                                "a": "A",
                                "b": "B",
                                "c": "C",
                                "text": "E",
                                "marker": {
                                    "size": "E",
                                    "color": "E"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "50%",
                        "type": "scatterternary",
                        "marker": {
                            "cmax": 150866,
                            "cmin": 12140,
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "E",
                                    "color": "E"
                                }
                            },
                            "cauto": false,
                            "opacity": 1,
                            "sizemin": 0,
                            "sizeref": 333.3333333333333,
                            "sizesrc": "wangjingust:1:c03317",
                            "colorsrc": "wangjingust:1:c03317",
                            "sizemode": "area",
                            "showscale": false,
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.1111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.2222222222222222,
                                    "#3e4989"
                                ],
                                [
                                    0.3333333333333333,
                                    "#31688e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#26828e"
                                ],
                                [
                                    0.5555555555555556,
                                    "#1f9e89"
                                ],
                                [
                                    0.6666666666666666,
                                    "#35b779"
                                ],
                                [
                                    0.7777777777777778,
                                    "#6ece58"
                                ],
                                [
                                    0.8888888888888888,
                                    "#b5de2b"
                                ],
                                [
                                    1,
                                    "#fde725"
                                ]
                            ],
                            "reversescale": true
                        },
                        "hoveron": "points",
                        "opacity": 1,
                        "textsrc": "wangjingust:1:c03317",
                        "visible": "legendonly",
                        "cliponaxis": true,
                        "autocolorscale": false
                    },
                    {
                        "asrc": "wangjingust:1:942be0",
                        "bsrc": "wangjingust:1:c2a3b8",
                        "csrc": "wangjingust:1:1affb9",
                        "meta": {
                            "columnNames": {
                                "a": "A",
                                "b": "B",
                                "c": "C",
                                "marker": {
                                    "size": "F",
                                    "color": "F"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "75%",
                        "type": "scatterternary",
                        "marker": {
                            "cmax": 150866,
                            "cmin": 12140,
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "F",
                                    "color": "F"
                                }
                            },
                            "cauto": false,
                            "sizeref": 333.3333333333333,
                            "sizesrc": "wangjingust:1:cc0e19",
                            "colorsrc": "wangjingust:1:cc0e19",
                            "sizemode": "area",
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.1111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.2222222222222222,
                                    "#3e4989"
                                ],
                                [
                                    0.3333333333333333,
                                    "#31688e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#26828e"
                                ],
                                [
                                    0.5555555555555556,
                                    "#1f9e89"
                                ],
                                [
                                    0.6666666666666666,
                                    "#35b779"
                                ],
                                [
                                    0.7777777777777778,
                                    "#6ece58"
                                ],
                                [
                                    0.8888888888888888,
                                    "#b5de2b"
                                ],
                                [
                                    1,
                                    "#fde725"
                                ]
                            ],
                            "maxdisplayed": 0,
                            "reversescale": true
                        },
                        "visible": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:800055",
                                "bsrc": "DavidTen:8:00f6ec",
                                "csrc": "DavidTen:8:16c320",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2010",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:edb33b",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:59b53d",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:25eba2",
                                "bsrc": "DavidTen:8:e2042d",
                                "csrc": "DavidTen:8:cac1c7",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2010",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:2603b2",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:6af003",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:4d73c8",
                                "bsrc": "DavidTen:8:6b8c55",
                                "csrc": "DavidTen:8:c4fb0f",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2010",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:79e07a",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:18278d",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:70a503",
                                "bsrc": "DavidTen:8:6f06a4",
                                "csrc": "DavidTen:8:e51b26",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2010",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:b5495a",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:e2ba11",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:27d77c",
                                "bsrc": "DavidTen:8:3a0406",
                                "csrc": "DavidTen:8:fcd4e9",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2010",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:0bdac7",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:ed43fa",
                                "visible": true
                            }
                        ],
                        "name": "2010",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:d7647a",
                                "bsrc": "DavidTen:8:683173",
                                "csrc": "DavidTen:8:f3ae45",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2011",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:e9888a",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:6f3999",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:a2c78e",
                                "bsrc": "DavidTen:8:03307a",
                                "csrc": "DavidTen:8:fae0a9",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2011",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:d129ca",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:0d22ba",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:41ff8f",
                                "bsrc": "DavidTen:8:95f648",
                                "csrc": "DavidTen:8:824640",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2011",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5afcb4",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:7bf150",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:fc7b51",
                                "bsrc": "DavidTen:8:ab3e0b",
                                "csrc": "DavidTen:8:9234a5",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2011",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5681a9",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:34c26f",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:41a4e6",
                                "bsrc": "DavidTen:8:29c443",
                                "csrc": "DavidTen:8:bd2a40",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2011",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:ba8611",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:ebf92c",
                                "visible": true
                            }
                        ],
                        "name": "2011",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:73e539",
                                "bsrc": "DavidTen:8:d9c626",
                                "csrc": "DavidTen:8:57125f",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2012",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:d4e97a",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:0d7b34",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:7f23fd",
                                "bsrc": "DavidTen:8:0dccb2",
                                "csrc": "DavidTen:8:950632",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2012",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:71a192",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:143841",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:aa4bed",
                                "bsrc": "DavidTen:8:ef258e",
                                "csrc": "DavidTen:8:c10c0e",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2012",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:f418a2",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:c3549a",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:833977",
                                "bsrc": "DavidTen:8:c5a0c1",
                                "csrc": "DavidTen:8:659f90",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2012",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:0e5798",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:b979a4",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:3f77d3",
                                "bsrc": "DavidTen:8:f25947",
                                "csrc": "DavidTen:8:306214",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2012",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:54130f",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:188fdf",
                                "visible": true
                            }
                        ],
                        "name": "2012",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:b52f8a",
                                "bsrc": "DavidTen:8:e9611b",
                                "csrc": "DavidTen:8:bb499e",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2013",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:f99de4",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:402e30",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:0bbb5c",
                                "bsrc": "DavidTen:8:317524",
                                "csrc": "DavidTen:8:4d5ec9",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2013",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:58a131",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:96db91",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:ec2b54",
                                "bsrc": "DavidTen:8:f5ac72",
                                "csrc": "DavidTen:8:506731",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2013",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:52dd9f",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:fa6770",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:cffc66",
                                "bsrc": "DavidTen:8:e3f58c",
                                "csrc": "DavidTen:8:de27ed",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2013",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:3a3a05",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:0d46b2",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:74fbe4",
                                "bsrc": "DavidTen:8:11ee36",
                                "csrc": "DavidTen:8:2f8463",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2013",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:1da65c",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:76bb92",
                                "visible": true
                            }
                        ],
                        "name": "2013",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:95facf",
                                "bsrc": "DavidTen:8:3aa400",
                                "csrc": "DavidTen:8:7052a1",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2014",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:62562c",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:c4508b",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:a4a0bb",
                                "bsrc": "DavidTen:8:ea8a5e",
                                "csrc": "DavidTen:8:791800",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2014",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:f9833f",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:5a3ddd",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:1fd5a3",
                                "bsrc": "DavidTen:8:3c5d33",
                                "csrc": "DavidTen:8:fd5aa0",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2014",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:da8db1",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:41e447",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:a6c29e",
                                "bsrc": "DavidTen:8:fe5ef3",
                                "csrc": "DavidTen:8:3e900d",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2014",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:a2e99b",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:130261",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:a94425",
                                "bsrc": "DavidTen:8:f1606e",
                                "csrc": "DavidTen:8:c96639",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2014",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:eee0b4",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:b63c69",
                                "visible": true
                            }
                        ],
                        "name": "2014",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:dbe945",
                                "bsrc": "DavidTen:8:87c3b2",
                                "csrc": "DavidTen:8:8bf178",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2015",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5d308b",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:3ceed4",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:57c083",
                                "bsrc": "DavidTen:8:4d35db",
                                "csrc": "DavidTen:8:491f8f",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2015",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:bb5a5c",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:a21440",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:711060",
                                "bsrc": "DavidTen:8:e0aef2",
                                "csrc": "DavidTen:8:cfbad1",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2015",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5640cd",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:1a735d",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:7a6ac6",
                                "bsrc": "DavidTen:8:50b6e5",
                                "csrc": "DavidTen:8:1dd8a3",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2015",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:ea4f69",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:4f6b01",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:9c0b9e",
                                "bsrc": "DavidTen:8:c07dad",
                                "csrc": "DavidTen:8:0d2cba",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2015",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:985903",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:39c3be",
                                "visible": true
                            }
                        ],
                        "name": "2015",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:fc3171",
                                "bsrc": "DavidTen:8:903aa3",
                                "csrc": "DavidTen:8:08442f",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2016",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:07fadf",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:9608e1",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:381445",
                                "bsrc": "DavidTen:8:2ba5d7",
                                "csrc": "DavidTen:8:f9bfa6",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2016",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5531a3",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:0bc586",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:c63198",
                                "bsrc": "DavidTen:8:fe245d",
                                "csrc": "DavidTen:8:3735ee",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2016",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:ec2bbb",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:145109",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:838b59",
                                "bsrc": "DavidTen:8:1e727a",
                                "csrc": "DavidTen:8:cf52c1",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2016",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:49c1ed",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:ee33dd",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:d654e5",
                                "bsrc": "DavidTen:8:b23822",
                                "csrc": "DavidTen:8:055620",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2016",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:27a1eb",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:838cab",
                                "visible": true
                            }
                        ],
                        "name": "2016",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "asrc": "DavidTen:8:f4149e",
                                "bsrc": "DavidTen:8:1ebf19",
                                "csrc": "DavidTen:8:dfc7b6",
                                "mode": "markers",
                                "name": "Central Region",
                                "type": "scatterternary",
                                "frame": "2017",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(74,198,183,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:3c7f98",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(74,198,183,0.5)"
                                },
                                "textsrc": "DavidTen:8:004c65",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:64c25d",
                                "bsrc": "DavidTen:8:a9b8cd",
                                "csrc": "DavidTen:8:c3471d",
                                "mode": "markers",
                                "name": "East Region",
                                "type": "scatterternary",
                                "frame": "2017",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(25,114,164,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:d24fcc",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(25,114,164,0.5)"
                                },
                                "textsrc": "DavidTen:8:7d5dff",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:4f8a84",
                                "bsrc": "DavidTen:8:51e77f",
                                "csrc": "DavidTen:8:dec642",
                                "mode": "markers",
                                "name": "North East Region",
                                "type": "scatterternary",
                                "frame": "2017",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(150,95,138,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:ce0db8",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(150,95,138,0.5)"
                                },
                                "textsrc": "DavidTen:8:201bf9",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:b4f5d0",
                                "bsrc": "DavidTen:8:99f56e",
                                "csrc": "DavidTen:8:168126",
                                "mode": "markers",
                                "name": "North Region",
                                "type": "scatterternary",
                                "frame": "2017",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(255,112,112,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:5cfb19",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(255,112,112,0.5)"
                                },
                                "textsrc": "DavidTen:8:cb1e0f",
                                "visible": true
                            },
                            {
                                "asrc": "DavidTen:8:5956ff",
                                "bsrc": "DavidTen:8:e804f5",
                                "csrc": "DavidTen:8:2a487e",
                                "mode": "markers",
                                "name": "West Region",
                                "type": "scatterternary",
                                "frame": "2017",
                                "marker": {
                                    "line": {
                                        "color": "#FFFFFF",
                                        "width": 2
                                    },
                                    "color": "rgba(198,25,81,1)",
                                    "symbol": "circle",
                                    "opacity": 0.4,
                                    "sizeref": 2,
                                    "sizesrc": "DavidTen:8:370927",
                                    "sizemode": "diameter",
                                    "fillcolor": "rgba(198,25,81,0.5)"
                                },
                                "textsrc": "DavidTen:8:149b22",
                                "visible": true
                            }
                        ],
                        "name": "2017",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    }
                ],
                "layout": {
                    "aaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "baxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "caxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "sliders": [
                        {
                            "pad": {
                                "t": 40
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "2010"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2010",
                                    "value": "2010",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2011"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2011",
                                    "value": "2011",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2012"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2012",
                                    "value": "2012",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2013"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2013",
                                    "value": "2013",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2014"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2014",
                                    "value": "2014",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2015"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2015",
                                    "value": "2015",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2016"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2016",
                                    "value": "2016",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2017"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2017",
                                    "value": "2017",
                                    "method": "animate"
                                }
                            ],
                            "active": 2,
                            "visible": false,
                            "currentvalue": {
                                "font": {
                                    "size": 16,
                                    "color": "red"
                                },
                                "prefix": "YEAR ",
                                "xanchor": "right"
                            }
                        }
                    ],
                    "ternary": {
                        "sum": 1,
                        "aaxis": {
                            "title": {
                                "text": "<br>"
                            }
                        },
                        "baxis": {
                            "title": {
                                "text": "<br>"
                            }
                        },
                        "caxis": {
                            "title": {
                                "text": "<br>"
                            }
                        },
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        }
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": true,
                    "updatemenus": [
                        {
                            "x": 0,
                            "y": 0,
                            "pad": {
                                "r": 5,
                                "t": 60
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "Play",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "right",
                            "showactive": false
                        }
                    ],
                    "plot_bgcolor": "rgb(243, 243, 243)",
                    "paper_bgcolor": "rgb(243, 243, 243)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~wangjingust",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-18 03:01:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wangjingust",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}