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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTExKzEyJTNBMTMlM0E1My42MTEzMzclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xMSsxMyUzQTM5JTNBMDcuNjYzMjc3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-11T13:39:07.663277Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EIDSTER/4312.embed",
            "fid": "EIDSTER:4312",
            "filename": "EIDSTER_eCurve_Crypto_Reserve",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EIDSTER:4312/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EIDSTER:4312/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EIDSTER:4312/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EIDSTER:4312/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EIDSTER:4312",
                "plots": "https://api.plotly.com/v2/plots/EIDSTER:4312",
                "parent": "https://api.plotly.com/v2/folders/home?user=EIDSTER"
            },
            "owner": "EIDSTER",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 34,
            "web_url": "https://chart-studio.plotly.com/~EIDSTER/4312/",
            "world_readable": true,
            "date_modified": "2025-08-17T17:00:49.195Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EIDSTER/4312/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "CRYPTO RESERVE",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4432:efc902",
                        "ysrc": "EIDSTER:4432:dd80c9",
                        "hovertemplate": "CryptoReserve: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "SPY",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4432:bcbbeb",
                        "ysrc": "EIDSTER:4432:8cdd65",
                        "hovertemplate": "SPY: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "red",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Barclays Hedge Fund Index",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4432:dedda5",
                        "ysrc": "EIDSTER:4432:db51e6",
                        "hovertemplate": "Barclays Hedge Fund Index: $%{y:,.0f}<extra></extra>"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14,
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.5,
                        "y": 0.95,
                        "text": "<span style=\"font-size: 20px;\"><b>CRYPTO RESERVE vs SPY SP-500 ETF</b></span><br>Starting with $10,000 Investment<br>Excess return vs SPY: 83.7%",
                        "xanchor": "center",
                        "yanchor": "top"
                    },
                    "xaxis": {
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "%b-%Y"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Equity ($)"
                        },
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "$,.0f"
                    },
                    "legend": {
                        "x": 0.01,
                        "y": 0.99,
                        "bgcolor": "rgba(255, 255, 255, 1.0)",
                        "bordercolor": "rgba(0, 0, 0, 1.0)",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 40,
                        "t": 90,
                        "pad": 1
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper"
                        }
                    ],
                    "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
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "showlegend": true,
                    "plot_bgcolor": "white",
                    "paper_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EIDSTER",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-14 00:16:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EIDSTER",
                "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-11T13:34:23.064374Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~TGW/1.embed",
            "fid": "TGW:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/TGW:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/TGW:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/TGW/1/8_YIHADH0QDG0KLR8COW8YQL4OFKXZPI.png",
                "list-thumb": "https://api.plotly.com/v2/files/TGW:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/TGW:1",
                "plots": "https://api.plotly.com/v2/plots/TGW:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=TGW"
            },
            "owner": "TGW",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~TGW/1/",
            "world_readable": true,
            "date_modified": "2025-08-11T13:34:23.075Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~TGW/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Geographic blend (X)",
                                "y": "Innovation (Y)",
                                "z": "Flexibility (Z)",
                                "text": "Idea",
                                "marker": {
                                    "size": "Income Potential (£)",
                                    "color": "Ease of Entry"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "TGW:0:427227",
                        "ysrc": "TGW:0:d712fd",
                        "zsrc": "TGW:0:e091dd",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "Income Potential (£)",
                                    "color": "Ease of Entry"
                                }
                            },
                            "sizeref": 0.0004938271604938272,
                            "sizesrc": "TGW:0:45f5fb",
                            "colorsrc": "TGW:0:5ef16e",
                            "sizemode": "area"
                        },
                        "textsrc": "TGW:0:f6b034",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.8500921933428587,
                                "y": -1.109683269756247,
                                "z": 0.09833879887671881
                            },
                            "center": {
                                "x": -0.008439465795126487,
                                "y": -0.001254160830334286,
                                "z": 0.029454965740671333
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "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
                                    },
                                    "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": "#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": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "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",
                                "#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": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~TGW",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.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-08-11 13:11:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "TGW",
                "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-11T13:29:54.713652Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vftuvt/5.embed",
            "fid": "vftuvt:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/vftuvt:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/vftuvt:5/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vftuvt/5/8_VL718YV1KTKGMS8X8IQC7BX1NDWGJH.png",
                "list-thumb": "https://api.plotly.com/v2/files/vftuvt:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vftuvt:5",
                "plots": "https://api.plotly.com/v2/plots/vftuvt:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=vftuvt"
            },
            "owner": "vftuvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~vftuvt/5/",
            "world_readable": true,
            "date_modified": "2025-08-11T13:57:46.679Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vftuvt/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "V(n001)"
                            }
                        },
                        "mode": "lines",
                        "name": "Input",
                        "type": "scatter",
                        "xsrc": "vftuvt:9:b7bf60",
                        "ysrc": "vftuvt:9:1fdc75"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "V(n002)"
                            }
                        },
                        "mode": "lines",
                        "name": "Output",
                        "type": "scatter",
                        "xsrc": "vftuvt:9:b7bf60",
                        "ysrc": "vftuvt:9:a9ef8b",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.3003300330032994e-05,
                            0.004999999999999998
                        ],
                        "title": {
                            "text": "Time(s)"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.880740102040817,
                            6.80964193877551
                        ],
                        "title": {
                            "text": "Voltage(V)"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.9127730841679257,
                        "y": 0.9742647058823529
                    },
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 0.0005,
                            "y": 4.76,
                            "ax": 48,
                            "ay": -5,
                            "font": {
                                "size": 16
                            },
                            "text": "4.76V",
                            "arrowhead": 5,
                            "arrowwidth": 2
                        },
                        {
                            "x": 0,
                            "y": 5.27,
                            "ax": 48,
                            "ay": -20,
                            "font": {
                                "size": 16
                            },
                            "text": "5.27V",
                            "arrowhead": 5,
                            "arrowsize": 1,
                            "arrowwidth": 2
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~vftuvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-09 19:15:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vftuvt",
                "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-11T13:28:45.785405Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EamilRoberto/3.embed",
            "fid": "EamilRoberto:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EamilRoberto:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/EamilRoberto/3/2_1O5D6NCT483AL5AUQMC735H2AMSEU8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/EamilRoberto/3/8_TUH8PSE2L8I24S6ER8NL83QGQTBG90.png",
                "list-thumb": "https://api.plotly.com/v2/files/EamilRoberto:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EamilRoberto:3",
                "plots": "https://api.plotly.com/v2/plots/EamilRoberto:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=EamilRoberto"
            },
            "owner": "EamilRoberto",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~EamilRoberto/3/",
            "world_readable": true,
            "date_modified": "2025-08-11T13:28:45.797Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EamilRoberto/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "hole": 0.59,
                        "meta": {
                            "columnNames": {
                                "labels": "A",
                                "values": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "pie",
                        "labelssrc": "EamilRoberto:2:5ecba6",
                        "valuessrc": "EamilRoberto:2:a7a392"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "hovermode": false,
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0.4673469387755102,
                            "text": "Added text",
                            "showarrow": true
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EamilRoberto",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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-11 13:24:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EamilRoberto",
                "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-11T13:27:57.746314Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EIDSTER/4308.embed",
            "fid": "EIDSTER:4308",
            "filename": "EIDSTER_Grid_Control_Core",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EIDSTER:4308/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EIDSTER:4308/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EIDSTER:4308/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EIDSTER:4308/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EIDSTER:4308",
                "plots": "https://api.plotly.com/v2/plots/EIDSTER:4308",
                "parent": "https://api.plotly.com/v2/folders/home?user=EIDSTER"
            },
            "owner": "EIDSTER",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~EIDSTER/4308/",
            "world_readable": true,
            "date_modified": "2025-08-16T21:21:12.656Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EIDSTER/4308/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "heatmap",
                        "xsrc": "EIDSTER:4421:6fce84",
                        "ysrc": "EIDSTER:4421:745fdc",
                        "zmid": 0,
                        "zsrc": "EIDSTER:4421:af5de1",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "#FF4B4B"
                            ],
                            [
                                0.5,
                                "#FFFFFF"
                            ],
                            [
                                1.0,
                                "#2B88DA"
                            ]
                        ],
                        "reversescale": false,
                        "hovertemplate": "Year: %{y}<br>Month: %{x}<br>Return: %{z:.1%}<extra></extra>"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "black",
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.5,
                        "y": 0.92,
                        "text": "<span style=\"font-size: 20px;\"><b>CONTROL CORE</b></span><br>Portfolio Returns<br>CAGR over 27.6 yrs: 11.1%",
                        "xanchor": "center",
                        "yanchor": "top"
                    },
                    "xaxis": {
                        "side": "top",
                        "dtick": 1,
                        "ticks": "",
                        "tickfont": {
                            "size": 12,
                            "weight": "bold"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec",
                            "YR"
                        ],
                        "tickvals": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec",
                            "YR"
                        ],
                        "gridcolor": "rgb(0, 0, 0)"
                    },
                    "yaxis": {
                        "dtick": 1,
                        "ticks": "",
                        "tickfont": {
                            "size": 14,
                            "weight": "bold"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            1998,
                            1999,
                            2000,
                            2001,
                            2002,
                            2003,
                            2004,
                            2005,
                            2006,
                            2007,
                            2008,
                            2009,
                            2010,
                            2011,
                            2012,
                            2013,
                            2014,
                            2015,
                            2016,
                            2017,
                            2018,
                            2019,
                            2020,
                            2021,
                            2022,
                            2023,
                            2024,
                            2025
                        ],
                        "tickvals": [
                            1998,
                            1999,
                            2000,
                            2001,
                            2002,
                            2003,
                            2004,
                            2005,
                            2006,
                            2007,
                            2008,
                            2009,
                            2010,
                            2011,
                            2012,
                            2013,
                            2014,
                            2015,
                            2016,
                            2017,
                            2018,
                            2019,
                            2020,
                            2021,
                            2022,
                            2023,
                            2024,
                            2025
                        ],
                        "autorange": "reversed",
                        "ticksuffix": "  "
                    },
                    "height": 1200,
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 40,
                        "t": 180,
                        "pad": 1
                    },
                    "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
                            }
                        }
                    },
                    "hoverlabel": {
                        "font": {
                            "color": "black"
                        },
                        "bgcolor": "white"
                    },
                    "annotations": [
                        {
                            "x": "Jan",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-14.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 1998,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>10.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 1999,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>20.3%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "9.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-7.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2000,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>-8.6%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2001,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>0.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2002,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>0.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2003,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>22.6%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2004,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>10.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2005,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>4.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2006,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>16.0%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2007,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>6.1%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2008,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>0.5%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "7.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2009,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>29.1%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-7.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-4.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "9.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2010,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>15.1%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "10.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2011,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>1.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2012,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>15.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2013,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>32.5%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2014,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>13.5%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2015,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>-5.2%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2016,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>11.0%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2017,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>21.7%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2018,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>3.2%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2019,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>16.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-7.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "7.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "10.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2020,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>15.6%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-4.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "7.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.8%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2021,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>28.6%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-6.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2022,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>-9.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-4.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "9.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2023,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>26.4%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-4.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1.2%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.1%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.9%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-2.4%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2024,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>24.9%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jan",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.7%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Feb",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-1.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Mar",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-5.6%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Apr",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "-0.3%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "May",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jun",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jul",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.5%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Aug",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Sep",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Oct",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Nov",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Dec",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0%",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "YR",
                            "y": 2025,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "<b>-2.2%</b>",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 1200,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EIDSTER",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-14 00:16:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EIDSTER",
                "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-11T13:27:17.268268Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EIDSTER/4306.embed",
            "fid": "EIDSTER:4306",
            "filename": "EIDSTER_eCurve_Control_Core",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EIDSTER:4306/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EIDSTER:4306/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EIDSTER:4306/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EIDSTER:4306/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EIDSTER:4306",
                "plots": "https://api.plotly.com/v2/plots/EIDSTER:4306",
                "parent": "https://api.plotly.com/v2/folders/home?user=EIDSTER"
            },
            "owner": "EIDSTER",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 45,
            "web_url": "https://chart-studio.plotly.com/~EIDSTER/4306/",
            "world_readable": true,
            "date_modified": "2025-08-17T17:00:37.050Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EIDSTER/4306/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "CONTROL CORE",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4431:8d2471",
                        "ysrc": "EIDSTER:4431:73e681",
                        "hovertemplate": "ControlCore: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "SPY",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4431:5d1168",
                        "ysrc": "EIDSTER:4431:3b7344",
                        "hovertemplate": "SPY: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "red",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Barclays Hedge Fund Index",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4431:8c52bd",
                        "ysrc": "EIDSTER:4431:c425a1",
                        "hovertemplate": "Barclays Hedge Fund Index: $%{y:,.0f}<extra></extra>"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14,
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.5,
                        "y": 0.95,
                        "text": "<span style=\"font-size: 20px;\"><b>CONTROL CORE vs SPY SP-500 ETF</b></span><br>Starting with $10,000 Investment<br>Excess return vs SPY: 26.4%",
                        "xanchor": "center",
                        "yanchor": "top"
                    },
                    "xaxis": {
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "%b-%Y"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Equity ($)"
                        },
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "$,.0f"
                    },
                    "legend": {
                        "x": 0.01,
                        "y": 0.99,
                        "bgcolor": "rgba(255, 255, 255, 1.0)",
                        "bordercolor": "rgba(0, 0, 0, 1.0)",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 40,
                        "t": 90,
                        "pad": 1
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper"
                        }
                    ],
                    "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
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "showlegend": true,
                    "plot_bgcolor": "white",
                    "paper_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EIDSTER",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-14 00:16:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EIDSTER",
                "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-11T13:25:45.538141Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EamilRoberto/1.embed",
            "fid": "EamilRoberto:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EamilRoberto:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EamilRoberto:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EamilRoberto:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EamilRoberto:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EamilRoberto:1",
                "plots": "https://api.plotly.com/v2/plots/EamilRoberto:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=EamilRoberto"
            },
            "owner": "EamilRoberto",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~EamilRoberto/1/",
            "world_readable": true,
            "date_modified": "2025-08-11T13:27:03.993Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EamilRoberto/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "hole": 0.59,
                        "meta": {
                            "columnNames": {
                                "labels": "A",
                                "values": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "pie",
                        "labelssrc": "EamilRoberto:0:4b648f",
                        "valuessrc": "EamilRoberto:0:9c4b53"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "hovermode": false,
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0.4673469387755102,
                            "text": "Added text",
                            "showarrow": true
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EamilRoberto",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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-11 13:24:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EamilRoberto",
                "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-11T13:15:40.438009Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EIDSTER/4303.embed",
            "fid": "EIDSTER:4303",
            "filename": "EIDSTER_eCurve_Apex_Select",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EIDSTER:4303/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EIDSTER:4303/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EIDSTER:4303/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EIDSTER:4303/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EIDSTER:4303",
                "plots": "https://api.plotly.com/v2/plots/EIDSTER:4303",
                "parent": "https://api.plotly.com/v2/folders/home?user=EIDSTER"
            },
            "owner": "EIDSTER",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 73,
            "web_url": "https://chart-studio.plotly.com/~EIDSTER/4303/",
            "world_readable": true,
            "date_modified": "2025-08-19T21:23:53.831Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EIDSTER/4303/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "APEX SELECT",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4441:88176e",
                        "ysrc": "EIDSTER:4441:20dfd7",
                        "hovertemplate": "ApexSelect: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "SPY",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4441:aeea93",
                        "ysrc": "EIDSTER:4441:c745f5",
                        "hovertemplate": "SPY: $%{y:,.0f}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "red",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Barclays Hedge Fund Index",
                        "type": "scatter",
                        "xsrc": "EIDSTER:4441:a0c4e7",
                        "ysrc": "EIDSTER:4441:b75d8f",
                        "hovertemplate": "Barclays Hedge Fund Index: $%{y:,.0f}<extra></extra>"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14,
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.5,
                        "y": 0.95,
                        "text": "<span style=\"font-size: 20px;\"><b>APEX SELECT vs SPY SP-500 ETF</b></span><br>Starting with $10,000 Investment<br>Excess return vs SPY: 152.9%",
                        "xanchor": "center",
                        "yanchor": "top"
                    },
                    "xaxis": {
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "%b-%Y"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Equity ($)"
                        },
                        "showgrid": true,
                        "gridcolor": "rgba(0, 0, 0, 0.1)",
                        "tickformat": "$,.0f"
                    },
                    "legend": {
                        "x": 0.01,
                        "y": 0.99,
                        "bgcolor": "rgba(255, 255, 255, 1.0)",
                        "bordercolor": "rgba(0, 0, 0, 1.0)",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 40,
                        "t": 90,
                        "pad": 1
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper"
                        }
                    ],
                    "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
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "showlegend": true,
                    "plot_bgcolor": "white",
                    "paper_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EIDSTER",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-14 00:16:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EIDSTER",
                "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-11T13:00:39.125084Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nsweet/12.embed",
            "fid": "nsweet:12",
            "filename": "Plot 12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nsweet/12/9_E94DBCVI2HMA0DYGT3BELRHIXES1VD.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nsweet:12/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nsweet/12/8_LER60QI0ITM52BU3SJO7RK6M9V0YJC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nsweet/12/9_E94DBCVI2HMA0DYGT3BELRHIXES1VD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nsweet:12",
                "plots": "https://api.plotly.com/v2/plots/nsweet:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=nsweet"
            },
            "owner": "nsweet",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nsweet/12/",
            "world_readable": true,
            "date_modified": "2025-08-11T13:00:39.140Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nsweet/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Diapause group 1",
                        "type": "bar",
                        "ysrc": "nsweet:11:a4ac04",
                        "marker": {
                            "color": "rgb(188, 210, 232)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Diapause group2",
                        "type": "bar",
                        "ysrc": "nsweet:11:e6e4d4",
                        "marker": {
                            "color": "rgb(115, 165, 198)"
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "Diapause group 3",
                        "type": "bar",
                        "ysrc": "nsweet:11:45cabe",
                        "marker": {
                            "color": "rgb(46, 89, 132)"
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "Diapause skipping ",
                        "type": "bar",
                        "ysrc": "nsweet:11:b18866",
                        "marker": {
                            "color": "rgb(255, 111, 0)"
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -0.5,
                            6.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            105.36842105263159
                        ],
                        "autorange": true
                    },
                    "barmode": "stack",
                    "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/~nsweet",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-10 16:43:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nsweet",
                "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-11T12:13:53.611337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eli58/2.embed",
            "fid": "eli58:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/eli58:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/eli58:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eli58/2/8_6E2ORHDKZJVXZSWJS9GJ6CIL47JDJG.png",
                "list-thumb": "https://api.plotly.com/v2/files/eli58:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eli58:2",
                "plots": "https://api.plotly.com/v2/plots/eli58:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=eli58"
            },
            "owner": "eli58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~eli58/2/",
            "world_readable": true,
            "date_modified": "2025-08-11T12:13:53.621Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eli58/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "r": "Emotion",
                                "theta": "A"
                            }
                        },
                        "mode": "lines",
                        "rsrc": "eli58:1:bf8275",
                        "type": "scatterpolar",
                        "marker": {
                            "color": "rgb(250, 99, 99)",
                            "symbol": "circle"
                        },
                        "hoveron": "fills",
                        "subplot": "polar",
                        "thetasrc": "eli58:1:5f69e1",
                        "hoverinfo": "r+theta",
                        "thetaunit": "degrees",
                        "connectgaps": true,
                        "hovertemplate": ""
                    },
                    {
                        "line": {
                            "color": "rgb(59, 67, 239)"
                        },
                        "meta": {
                            "columnNames": {
                                "r": "Quantity",
                                "theta": "A"
                            }
                        },
                        "rsrc": "eli58:1:8213ea",
                        "type": "scatterpolar",
                        "thetasrc": "eli58:1:5f69e1",
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                532112428252
                            ],
                            "title": {
                                "text": ""
                            },
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "category",
                            "showgrid": true,
                            "showline": true,
                            "direction": "counterclockwise",
                            "showticklabels": true
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~eli58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-11 11:34:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eli58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}