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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI0KzExJTNBMzUlM0E0Ni4xMzkzMDElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNCsxMSUzQTU4JTNBMDUuMDYzNjEyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-24T11:58:05.063612Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~whitebooks/1.embed",
            "fid": "whitebooks:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/whitebooks:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/whitebooks:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/whitebooks:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/whitebooks:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/whitebooks:1",
                "plots": "https://api.plotly.com/v2/plots/whitebooks:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=whitebooks"
            },
            "owner": "whitebooks",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~whitebooks/1/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:58:05.076Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~whitebooks/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~whitebooks",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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": "2024-04-24 11:57:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "whitebooks",
                "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": "2024-04-24T11:57:42.950128Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~truth119/3.embed",
            "fid": "truth119:3",
            "filename": "서울행정동별분석",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/truth119/3/9_MQPJF462NQN2VI5929TS0XRBKYNWHB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/truth119/3/2_EULNSL1MRLELI9SU4Q5HLIZ7GUIIOE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/truth119/3/8_87ECCIZEPDP621N0M3NWVKXCBZWNLH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/truth119/3/9_MQPJF462NQN2VI5929TS0XRBKYNWHB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/truth119:3",
                "plots": "https://api.plotly.com/v2/plots/truth119:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=truth119"
            },
            "owner": "truth119",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~truth119/3/",
            "world_readable": true,
            "date_modified": "2024-04-25T02:46:54.066Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~truth119/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9166ae",
                        "meta": {
                            "columnNames": {
                                "x": "아동인구",
                                "y": "더불어민주연합"
                            }
                        },
                        "mode": "markers",
                        "name": "더불어민주연합",
                        "type": "scatter",
                        "xsrc": "truth119:2:4cd0b2",
                        "ysrc": "truth119:2:0ed8c6",
                        "xaxis": "x"
                    },
                    {
                        "uid": "f4652b",
                        "mode": "lines",
                        "visible": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "9166ae",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0592035446020079,
                                        "value": 0.22244560740917882
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.012890831930392078,
                                        "value": 0.20451078615093476
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "출생등록인구",
                                "y": "더불어민주연합"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "truth119:2:651111",
                        "ysrc": "truth119:2:0ed8c6"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "고령인구",
                                "y": "더불어민주연합"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "truth119:2:e0f419",
                        "ysrc": "truth119:2:0ed8c6",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -63.53833492550811,
                            1027.5414679255082
                        ],
                        "title": {
                            "text": "아동인구"
                        },
                        "anchor": "y2",
                        "domain": [
                            0,
                            0.375
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.054374822190611655,
                            0.3676251778093883
                        ],
                        "title": {
                            "text": "득표"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "overlaying": false,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~truth119",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-07-24 07:43:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "truth119",
                "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": "2024-04-24T11:56:31.157783Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hyf123/1.embed",
            "fid": "hyf123:1",
            "filename": "4J:3M; param(200,700)-makespan: 264",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hyf123/1/9_APRLXEHF8M24HV3PL8YL9N52AQUCE9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hyf123/1/2_6B1XF4MBEJTH79EOJBD41RYDT0EIAJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hyf123/1/8_3I3NLFJA7VULXK1J10K8HFGN8UB379.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hyf123/1/9_APRLXEHF8M24HV3PL8YL9N52AQUCE9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hyf123:1",
                "plots": "https://api.plotly.com/v2/plots/hyf123:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=hyf123"
            },
            "owner": "hyf123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hyf123/1/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:56:31.168Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hyf123/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "hyf123:0:95c884",
                        "ysrc": "hyf123:0:7ca14a",
                        "fillcolor": "rgb(0, 0, 255)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(0, 0, 255)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "hyf123:0:786c18",
                        "ysrc": "hyf123:0:630e88",
                        "fillcolor": "rgb(0, 255, 0)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(0, 255, 0)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "hyf123:0:35328d",
                        "ysrc": "hyf123:0:5b83b5",
                        "fillcolor": "rgb(0, 255, 255)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(0, 255, 255)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "hyf123:0:4b0602",
                        "ysrc": "hyf123:0:1fbaff",
                        "fillcolor": "rgb(255, 0, 0)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(255, 0, 0)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "hyf123:0:ec4513",
                        "ysrc": "hyf123:0:a4346f",
                        "fillcolor": "rgb(255, 0, 255)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(255, 0, 255)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "hyf123:0:38eead",
                        "ysrc": "hyf123:0:65d8ad",
                        "fillcolor": "rgb(255, 155, 0)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(255, 155, 0)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "hyf123:0:1b1d2b",
                        "ysrc": "hyf123:0:866825",
                        "fillcolor": "rgb(255, 255, 0)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(255, 255, 0)"
                    },
                    {
                        "fill": "toself",
                        "mode": "none",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "hyf123:0:0bbcff",
                        "ysrc": "hyf123:0:574c89",
                        "fillcolor": "rgb(30, 30, 30)",
                        "hoverinfo": "name",
                        "legendgroup": "rgb(30, 30, 30)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:1eac5a",
                        "ysrc": "hyf123:0:ae745b",
                        "marker": {
                            "size": 1,
                            "color": "rgb(0, 0, 255)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:dd52fb",
                        "showlegend": false,
                        "legendgroup": "rgb(0, 0, 255)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:0ca367",
                        "ysrc": "hyf123:0:ad8cdb",
                        "marker": {
                            "size": 1,
                            "color": "rgb(0, 255, 0)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:940d84",
                        "showlegend": false,
                        "legendgroup": "rgb(0, 255, 0)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:016ff1",
                        "ysrc": "hyf123:0:b33a93",
                        "marker": {
                            "size": 1,
                            "color": "rgb(0, 255, 255)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:8fa23c",
                        "showlegend": false,
                        "legendgroup": "rgb(0, 255, 255)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:5e9a29",
                        "ysrc": "hyf123:0:05ae45",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 0, 0)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:69dc80",
                        "showlegend": false,
                        "legendgroup": "rgb(255, 0, 0)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:489913",
                        "ysrc": "hyf123:0:93a3f1",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 0, 255)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:608c36",
                        "showlegend": false,
                        "legendgroup": "rgb(255, 0, 255)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:3eff9c",
                        "ysrc": "hyf123:0:c7aa26",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 155, 0)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:2a665a",
                        "showlegend": false,
                        "legendgroup": "rgb(255, 155, 0)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:61a6ad",
                        "ysrc": "hyf123:0:bd6b7b",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 255, 0)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:98dded",
                        "showlegend": false,
                        "legendgroup": "rgb(255, 255, 0)"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "hyf123:0:1a2b91",
                        "ysrc": "hyf123:0:add993",
                        "marker": {
                            "size": 1,
                            "color": "rgb(30, 30, 30)",
                            "opacity": 0
                        },
                        "textsrc": "hyf123:0:dbc341",
                        "showlegend": false,
                        "legendgroup": "rgb(30, 30, 30)"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Gantt Chart"
                    },
                    "xaxis": {
                        "type": "date",
                        "showgrid": false,
                        "zeroline": false,
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "day",
                                    "count": 7,
                                    "label": "1w",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            5
                        ],
                        "showgrid": false,
                        "ticktext": [
                            "3",
                            "2",
                            "1",
                            "0"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3
                        ],
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 600,
                    "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": "closest",
                    "showlegend": true
                }
            },
            "height": 600,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hyf123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-24 11:52:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hyf123",
                "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": "2024-04-24T11:42:47.123159Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/141.embed",
            "fid": "jej0312:141",
            "filename": "Plot 141",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/141/9_C6GX0VPMKU6I84PBT58WEIA6TI5PAN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/141/2_QVWSDQGXV3STK25KJ8FJRLTRQHPEC9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/141/8_J7W8ZPDTJ69ETASVJPL5BQK2ZYQIPI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/141/9_C6GX0VPMKU6I84PBT58WEIA6TI5PAN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:141",
                "plots": "https://api.plotly.com/v2/plots/jej0312:141",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/141/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:42:47.135Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/141/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:140:70d04f",
                            "sourcesrc": "jej0312:140:4d5f4d",
                            "targetsrc": "jej0312:140:71183b"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:140:06ccc9",
                            "labelsrc": "jej0312:140:210df0",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30,
                        "font_color": [
                            "#262C46",
                            "#262C46",
                            "#262C46",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4"
                        ]
                    },
                    "title": "Transitions and DTs",
                    "width": 2500,
                    "height": 1000
                }
            },
            "height": 1000,
            "width": 2500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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": "2024-04-24T11:41:03.272589Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/139.embed",
            "fid": "jej0312:139",
            "filename": "Plot 139",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/139/9_MJUE5NTU65TA65JOQWNJP4QDYO6XP5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/139/2_H9JCUP49VHQ7PGCMAZM4OT6ALK621R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/139/8_P7V0T4V6RXZH2ZHDGW3MHHZBF6JA81.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/139/9_MJUE5NTU65TA65JOQWNJP4QDYO6XP5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:139",
                "plots": "https://api.plotly.com/v2/plots/jej0312:139",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/139/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:41:03.285Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/139/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:138:d69524",
                            "sourcesrc": "jej0312:138:e35a30",
                            "targetsrc": "jej0312:138:03e4f4"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:138:20b35e",
                            "labelsrc": "jej0312:138:43620b",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30,
                        "color": [
                            "#262C46",
                            "#262C46",
                            "#262C46",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4"
                        ]
                    },
                    "title": "Transitions and DTs",
                    "width": 2500,
                    "height": 1000
                }
            },
            "height": 1000,
            "width": 2500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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": "2024-04-24T11:39:39.058091Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/137.embed",
            "fid": "jej0312:137",
            "filename": "Plot 137",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/137/9_3OU8M5MZXANQE448MRDMIVZOK5KDNL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/137/2_M8RQI93VCMUG56XH7D8CVVUUBVKQ1V.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/137/8_6FGQU9D9W2DRER86REEYL9N0KM8M5B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/137/9_3OU8M5MZXANQE448MRDMIVZOK5KDNL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:137",
                "plots": "https://api.plotly.com/v2/plots/jej0312:137",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/137/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:39:39.071Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/137/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:136:3768df",
                            "sourcesrc": "jej0312:136:1b53cb",
                            "targetsrc": "jej0312:136:693ecf"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:136:3f9a38",
                            "labelsrc": "jej0312:136:64d7e8",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30,
                        "color": [
                            "#262C46",
                            "#262C46",
                            "#262C46",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#99c261",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#c2a861",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#8798a1",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4",
                            "#b9c0c4"
                        ]
                    },
                    "title": "Transitions and DTs",
                    "width": 2500,
                    "height": 1000
                }
            },
            "height": 1000,
            "width": 2500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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": "2024-04-24T11:39:08.089138Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~weicheng998/21.embed",
            "fid": "weicheng998:21",
            "filename": "cpue_ice_breakup",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/weicheng998:21/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/weicheng998/21/2_PXIQ2C0YWROAAT7YMOLUIJWJDMFPLY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/weicheng998/21/8_SS7U0Y2E5XUG5BE6RQSM25D7WERRB4.png",
                "list-thumb": "https://api.plotly.com/v2/files/weicheng998:21/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/weicheng998:21",
                "plots": "https://api.plotly.com/v2/plots/weicheng998:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=weicheng998"
            },
            "owner": "weicheng998",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 27,
            "web_url": "https://chart-studio.plotly.com/~weicheng998/21/",
            "world_readable": true,
            "date_modified": "2024-04-28T04:41:37.423Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~weicheng998/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "Yukon River",
                        "type": "scatter",
                        "xsrc": "weicheng998:20:be84e7",
                        "ysrc": "weicheng998:20:e7c39d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "Tanana River",
                        "type": "scatter",
                        "xsrc": "weicheng998:20:bc07bf",
                        "ysrc": "weicheng998:20:b992d2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "Kuskokwim River",
                        "type": "scatter",
                        "xsrc": "weicheng998:20:8b843b",
                        "ysrc": "weicheng998:20:369555",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        }
                    }
                ],
                "layout": {
                    "title": "Ice Breakup Dates for Major Rivers",
                    "xaxis": {
                        "title": "Year",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "Date (relative to January 1st)",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~weicheng998",
                "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": "2023-12-08 19:17:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "weicheng998",
                "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": "2024-04-24T11:38:11.195213Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ssxs/1.embed",
            "fid": "ssxs:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ssxs/1/9_DIU35XNZX7T8WERG7T1UH8BGZ72ORD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ssxs/1/2_EHMZJYE3HX05WOTS6VA0ZWNKYRUS9Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ssxs/1/8_XOUCPCABWAIAVC4YTXZ15YSUEZ294V.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ssxs/1/9_DIU35XNZX7T8WERG7T1UH8BGZ72ORD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ssxs:1",
                "plots": "https://api.plotly.com/v2/plots/ssxs:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ssxs"
            },
            "owner": "ssxs",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ssxs/1/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:38:25.164Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ssxs/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ssxs:0:4b7478",
                        "ysrc": "ssxs:0:7ea6f1"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ssxs:0:4b7478",
                        "ysrc": "ssxs:0:7bda67",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ssxs:0:4b7478",
                        "ysrc": "ssxs:0:d92339",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ssxs:0:4b7478",
                        "ysrc": "ssxs:0:938d08",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ssxs:0:4b7478",
                        "ysrc": "ssxs:0:61b676",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            4999
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            10.055555555555555,
                            28.944444444444443
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ssxs",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-24 11:37:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ssxs",
                "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": "2024-04-24T11:35:49.447570Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janfv.pokorny/86.embed",
            "fid": "janfv.pokorny:86",
            "filename": "Example Plot_20240424113542",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/86/9_ISI1V8Z0EGUGIFWX80ANL4FQ554WH3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/86/2_6D5M4IOE3EPJ5BKOSVQNSJQVSVTN2F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/86/8_LY7RL98YDQI5N6N6WW2RN66NIZW2HT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/86/9_ISI1V8Z0EGUGIFWX80ANL4FQ554WH3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janfv.pokorny:86",
                "plots": "https://api.plotly.com/v2/plots/janfv.pokorny:86",
                "parent": "https://api.plotly.com/v2/folders/home?user=janfv.pokorny"
            },
            "owner": "janfv.pokorny",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~janfv.pokorny/86/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:35:49.457Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janfv.pokorny/86/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#000001"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "janfv.pokorny:85:6b8692",
                        "ysrc": "janfv.pokorny:85:9f8b20",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "x=%{x}<br>y=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Using Plotly Express"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janfv.pokorny",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.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": "2024-04-17 12:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janfv.pokorny",
                "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": "2024-04-24T11:35:46.139301Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janfv.pokorny/84.embed",
            "fid": "janfv.pokorny:84",
            "filename": "ChartStudio_Plotly_20240424113542",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/84/9_OFLT5X9O7HOBFKYMO0BLZ2RE1GTBUF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/84/2_OMNZNRTC8WEJ1JH4FZ0IKS3FULYRHH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/84/8_5ZJN1H1VSPXWDLRS2AXHS6ZQBMTEQZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/84/9_OFLT5X9O7HOBFKYMO0BLZ2RE1GTBUF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janfv.pokorny:84",
                "plots": "https://api.plotly.com/v2/plots/janfv.pokorny:84",
                "parent": "https://api.plotly.com/v2/folders/home?user=janfv.pokorny"
            },
            "owner": "janfv.pokorny",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~janfv.pokorny/84/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:35:46.153Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janfv.pokorny/84/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "janfv.pokorny:83:faa8be",
                        "ysrc": "janfv.pokorny:83:9e794f"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janfv.pokorny",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.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": "2024-04-17 12:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janfv.pokorny",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}