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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEyKzA1JTNBMTglM0E0NC43OTYzNzYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMiswNyUzQTMzJTNBMzAuOTEyMjM4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-12T07:33:30.912238Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/13.embed",
            "fid": "jeonyl:13",
            "filename": "Relaxation_voltage_after_charging.png",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jeonyl:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jeonyl:13/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jeonyl:13/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jeonyl:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:13",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/13/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:06:22.470Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:825488",
                        "ysrc": "jeonyl:12:cefec6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:90e348",
                        "ysrc": "jeonyl:12:98d4da",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:974916",
                        "ysrc": "jeonyl:12:c9b3a5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ad7b99",
                        "ysrc": "jeonyl:12:91098f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ffcdeb",
                        "ysrc": "jeonyl:12:eaeb6b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6bd74d",
                        "ysrc": "jeonyl:12:323c47",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8eefc6",
                        "ysrc": "jeonyl:12:25d7a0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a7af5f",
                        "ysrc": "jeonyl:12:bab3a9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6a2076",
                        "ysrc": "jeonyl:12:e5e491",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a4ba39",
                        "ysrc": "jeonyl:12:4adbe4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d9f1c3",
                        "ysrc": "jeonyl:12:ebd3b9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:844319",
                        "ysrc": "jeonyl:12:fb3575",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c1fd78",
                        "ysrc": "jeonyl:12:06e843",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:df6023",
                        "ysrc": "jeonyl:12:ca943b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a7a145",
                        "ysrc": "jeonyl:12:033eb0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f5c471",
                        "ysrc": "jeonyl:12:8223fe",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:982a58",
                        "ysrc": "jeonyl:12:eb54e9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:04acca",
                        "ysrc": "jeonyl:12:fa3ea2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f3f695",
                        "ysrc": "jeonyl:12:4d52da",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ca5491",
                        "ysrc": "jeonyl:12:3667f7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:10a4ec",
                        "ysrc": "jeonyl:12:00459e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3c37b7",
                        "ysrc": "jeonyl:12:d271c2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:759ebf",
                        "ysrc": "jeonyl:12:c353c6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d371ac",
                        "ysrc": "jeonyl:12:8ae720",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f64154",
                        "ysrc": "jeonyl:12:ca2e66",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ecc5ac",
                        "ysrc": "jeonyl:12:d4edae",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:16d356",
                        "ysrc": "jeonyl:12:7d6a49",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:01fd8c",
                        "ysrc": "jeonyl:12:047b10",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:484330",
                        "ysrc": "jeonyl:12:5621e1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1180d8",
                        "ysrc": "jeonyl:12:186ecd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c96281",
                        "ysrc": "jeonyl:12:6ed786",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:378ca3",
                        "ysrc": "jeonyl:12:ddfebc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c41c1e",
                        "ysrc": "jeonyl:12:82b376",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b2bcda",
                        "ysrc": "jeonyl:12:1d65b0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:67c3aa",
                        "ysrc": "jeonyl:12:fdc1eb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4ac6e4",
                        "ysrc": "jeonyl:12:47c7a4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:addb8a",
                        "ysrc": "jeonyl:12:8f3ba3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e9a745",
                        "ysrc": "jeonyl:12:870f7e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a1b454",
                        "ysrc": "jeonyl:12:4fc10e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:067f03",
                        "ysrc": "jeonyl:12:904387",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:eb5063",
                        "ysrc": "jeonyl:12:25589f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:43e83f",
                        "ysrc": "jeonyl:12:4ec6c7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f77b18",
                        "ysrc": "jeonyl:12:acede7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:0949f9",
                        "ysrc": "jeonyl:12:d910a5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:584335",
                        "ysrc": "jeonyl:12:44c1d8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:285814",
                        "ysrc": "jeonyl:12:9f2348",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:abbe79",
                        "ysrc": "jeonyl:12:925e91",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4363dc",
                        "ysrc": "jeonyl:12:bfa8d1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cb1aac",
                        "ysrc": "jeonyl:12:2b56cc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3c0a27",
                        "ysrc": "jeonyl:12:80c28c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e3f676",
                        "ysrc": "jeonyl:12:399397",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:13f226",
                        "ysrc": "jeonyl:12:5d2c44",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f59732",
                        "ysrc": "jeonyl:12:f6ba46",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7c81fa",
                        "ysrc": "jeonyl:12:b85711",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:79d9b9",
                        "ysrc": "jeonyl:12:fc4cc0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:791588",
                        "ysrc": "jeonyl:12:b4478a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:93d6c7",
                        "ysrc": "jeonyl:12:366a86",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:208854",
                        "ysrc": "jeonyl:12:36bf13",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:640b3a",
                        "ysrc": "jeonyl:12:ea014f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bc830a",
                        "ysrc": "jeonyl:12:41a279",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:645aee",
                        "ysrc": "jeonyl:12:5fc488",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:74c494",
                        "ysrc": "jeonyl:12:81bbdd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ef703e",
                        "ysrc": "jeonyl:12:4b186c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:dcbfff",
                        "ysrc": "jeonyl:12:d6c2e6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cd59b8",
                        "ysrc": "jeonyl:12:259210",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ca0a86",
                        "ysrc": "jeonyl:12:cc9399",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:008609",
                        "ysrc": "jeonyl:12:1f6863",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ad9b3d",
                        "ysrc": "jeonyl:12:1d0d49",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a850cc",
                        "ysrc": "jeonyl:12:16d2a0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1134ec",
                        "ysrc": "jeonyl:12:3c5c56",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2b5eca",
                        "ysrc": "jeonyl:12:227205",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:74c4e7",
                        "ysrc": "jeonyl:12:3ccec8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ea2ace",
                        "ysrc": "jeonyl:12:28aee5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:765a07",
                        "ysrc": "jeonyl:12:5be5e7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:48e436",
                        "ysrc": "jeonyl:12:a9e2f9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:69cff5",
                        "ysrc": "jeonyl:12:0c21e0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:fcaf1d",
                        "ysrc": "jeonyl:12:ba33c9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:be1ba4",
                        "ysrc": "jeonyl:12:2ba774",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c1a685",
                        "ysrc": "jeonyl:12:f3b283",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f02b05",
                        "ysrc": "jeonyl:12:0892d7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1c0721",
                        "ysrc": "jeonyl:12:ca99d1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d3e1d3",
                        "ysrc": "jeonyl:12:83ee2f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8b5722",
                        "ysrc": "jeonyl:12:db9657",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6df613",
                        "ysrc": "jeonyl:12:e204cc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4b0e36",
                        "ysrc": "jeonyl:12:fb028d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7393b1",
                        "ysrc": "jeonyl:12:db9c69",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3f4c1b",
                        "ysrc": "jeonyl:12:d81d78",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:fea7d6",
                        "ysrc": "jeonyl:12:46eab7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bae8cd",
                        "ysrc": "jeonyl:12:3e01a3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:304e1b",
                        "ysrc": "jeonyl:12:ceaae3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cab2e6",
                        "ysrc": "jeonyl:12:2ec1c7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7f8774",
                        "ysrc": "jeonyl:12:ed78b3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2f3aa5",
                        "ysrc": "jeonyl:12:f2579b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:fe9344",
                        "ysrc": "jeonyl:12:694a83",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:752d89",
                        "ysrc": "jeonyl:12:25663a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:db619b",
                        "ysrc": "jeonyl:12:ea272c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e8708a",
                        "ysrc": "jeonyl:12:0d5d69",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c4e080",
                        "ysrc": "jeonyl:12:b0b84d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ecc944",
                        "ysrc": "jeonyl:12:f6d914",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:62b638",
                        "ysrc": "jeonyl:12:36114f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:24551d",
                        "ysrc": "jeonyl:12:8ece77",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:412f58",
                        "ysrc": "jeonyl:12:63e9aa",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:68eb06",
                        "ysrc": "jeonyl:12:a7b7ec",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e75459",
                        "ysrc": "jeonyl:12:82f60d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:66ef50",
                        "ysrc": "jeonyl:12:1cba8d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8411f9",
                        "ysrc": "jeonyl:12:3bfe0e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9f9451",
                        "ysrc": "jeonyl:12:e1d163",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bc7c06",
                        "ysrc": "jeonyl:12:b0f583",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8b93d2",
                        "ysrc": "jeonyl:12:255343",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a68c8d",
                        "ysrc": "jeonyl:12:6311fd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d859f0",
                        "ysrc": "jeonyl:12:fe5747",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cc1364",
                        "ysrc": "jeonyl:12:eb82e9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:af1af5",
                        "ysrc": "jeonyl:12:beb034",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bb2235",
                        "ysrc": "jeonyl:12:2e0bb3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5e5ce8",
                        "ysrc": "jeonyl:12:e37dbe",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:276f65",
                        "ysrc": "jeonyl:12:81d978",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8ff216",
                        "ysrc": "jeonyl:12:6d4206",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:163558",
                        "ysrc": "jeonyl:12:d75c05",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3db2e1",
                        "ysrc": "jeonyl:12:7df281",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d0d82b",
                        "ysrc": "jeonyl:12:f76f68",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4c2d75",
                        "ysrc": "jeonyl:12:9a0687",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:20fd6f",
                        "ysrc": "jeonyl:12:ee7ec1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:fa4691",
                        "ysrc": "jeonyl:12:09cd6d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2ad2c1",
                        "ysrc": "jeonyl:12:a9176b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7aff8e",
                        "ysrc": "jeonyl:12:804d86",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:49123b",
                        "ysrc": "jeonyl:12:872504",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:de072f",
                        "ysrc": "jeonyl:12:07136a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7df814",
                        "ysrc": "jeonyl:12:459ea1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:84c04b",
                        "ysrc": "jeonyl:12:b908aa",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3d62cf",
                        "ysrc": "jeonyl:12:5968ef",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a109fc",
                        "ysrc": "jeonyl:12:233f4b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:dc5332",
                        "ysrc": "jeonyl:12:97afbb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4f1b7e",
                        "ysrc": "jeonyl:12:1c8342",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f952d4",
                        "ysrc": "jeonyl:12:64b4e1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:04c70b",
                        "ysrc": "jeonyl:12:e250c6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:45ba2c",
                        "ysrc": "jeonyl:12:4ec9d9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5f9fc7",
                        "ysrc": "jeonyl:12:27313d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1d4572",
                        "ysrc": "jeonyl:12:696ab6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5c8fb3",
                        "ysrc": "jeonyl:12:9215e6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:228fc4",
                        "ysrc": "jeonyl:12:a051b2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cb193f",
                        "ysrc": "jeonyl:12:41d8e1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5972bb",
                        "ysrc": "jeonyl:12:fbbe56",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:641972",
                        "ysrc": "jeonyl:12:45971f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:17162e",
                        "ysrc": "jeonyl:12:c1cc84",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:0f285a",
                        "ysrc": "jeonyl:12:0d9bb1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:51035d",
                        "ysrc": "jeonyl:12:b27dca",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:823d80",
                        "ysrc": "jeonyl:12:d1fb21",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cf1564",
                        "ysrc": "jeonyl:12:d6b46b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b3f0af",
                        "ysrc": "jeonyl:12:f78edd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5e9f09",
                        "ysrc": "jeonyl:12:9e90ef",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:49966a",
                        "ysrc": "jeonyl:12:bb4920",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d35edf",
                        "ysrc": "jeonyl:12:0677eb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3ddb17",
                        "ysrc": "jeonyl:12:32e546",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f5bdcb",
                        "ysrc": "jeonyl:12:a966c7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:fdb6ff",
                        "ysrc": "jeonyl:12:16444b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:dcbce2",
                        "ysrc": "jeonyl:12:844da5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:38d144",
                        "ysrc": "jeonyl:12:c3a593",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:89f99c",
                        "ysrc": "jeonyl:12:43aedb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7a0470",
                        "ysrc": "jeonyl:12:c68e81",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7c29cf",
                        "ysrc": "jeonyl:12:3b3fce",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1f7fbe",
                        "ysrc": "jeonyl:12:4717ff",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c04adf",
                        "ysrc": "jeonyl:12:01b099",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:541f2d",
                        "ysrc": "jeonyl:12:2060e8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bc4227",
                        "ysrc": "jeonyl:12:f469da",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b8e636",
                        "ysrc": "jeonyl:12:5d71e7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:8b587d",
                        "ysrc": "jeonyl:12:6d3846",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:33d30e",
                        "ysrc": "jeonyl:12:12dc1c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2bd9ce",
                        "ysrc": "jeonyl:12:7310c3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f7df0d",
                        "ysrc": "jeonyl:12:769374",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9cc98c",
                        "ysrc": "jeonyl:12:8541ed",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b27f9b",
                        "ysrc": "jeonyl:12:228689",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b87e5a",
                        "ysrc": "jeonyl:12:81911a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:061b12",
                        "ysrc": "jeonyl:12:1ce8dc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4de023",
                        "ysrc": "jeonyl:12:38b1c7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1a920d",
                        "ysrc": "jeonyl:12:51f324",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5e2fd4",
                        "ysrc": "jeonyl:12:c3931e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f90d2e",
                        "ysrc": "jeonyl:12:df5b9b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d7655c",
                        "ysrc": "jeonyl:12:3cc6ff",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:51fcf4",
                        "ysrc": "jeonyl:12:3bf428",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:526b6b",
                        "ysrc": "jeonyl:12:c2ee65",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:45df46",
                        "ysrc": "jeonyl:12:d0bff1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:94cabc",
                        "ysrc": "jeonyl:12:7f717a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9ad535",
                        "ysrc": "jeonyl:12:5eca6a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:0f0b9e",
                        "ysrc": "jeonyl:12:2ff751",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:872aee",
                        "ysrc": "jeonyl:12:139f70",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7f0c4d",
                        "ysrc": "jeonyl:12:bcd666",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:df8778",
                        "ysrc": "jeonyl:12:832fce",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:d55024",
                        "ysrc": "jeonyl:12:f7b226",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:00ff08",
                        "ysrc": "jeonyl:12:b36ef4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c600c6",
                        "ysrc": "jeonyl:12:421447",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c7f929",
                        "ysrc": "jeonyl:12:e116d6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:707c49",
                        "ysrc": "jeonyl:12:e0e315",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:957549",
                        "ysrc": "jeonyl:12:c866e5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b48407",
                        "ysrc": "jeonyl:12:574bd1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:962856",
                        "ysrc": "jeonyl:12:ffb41b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:25d505",
                        "ysrc": "jeonyl:12:702d2e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:26279d",
                        "ysrc": "jeonyl:12:885e21",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5034d5",
                        "ysrc": "jeonyl:12:404257",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ff5ae9",
                        "ysrc": "jeonyl:12:d5d6f6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:28257b",
                        "ysrc": "jeonyl:12:fd3e28",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:737ef9",
                        "ysrc": "jeonyl:12:3f8cf6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6d206c",
                        "ysrc": "jeonyl:12:4e2f0f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9a7263",
                        "ysrc": "jeonyl:12:fb56fd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f053ed",
                        "ysrc": "jeonyl:12:302393",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f962d9",
                        "ysrc": "jeonyl:12:51968e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f2cb7d",
                        "ysrc": "jeonyl:12:f41676",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9b7e34",
                        "ysrc": "jeonyl:12:11fe3c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2ffd0e",
                        "ysrc": "jeonyl:12:b26457",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9a9f8a",
                        "ysrc": "jeonyl:12:07c191",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c1f8a3",
                        "ysrc": "jeonyl:12:acc1b1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:4ff78e",
                        "ysrc": "jeonyl:12:1b74c7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:85b675",
                        "ysrc": "jeonyl:12:fd694f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:072651",
                        "ysrc": "jeonyl:12:46338a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6ac83e",
                        "ysrc": "jeonyl:12:9d46c4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2f3226",
                        "ysrc": "jeonyl:12:80e196",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:49a441",
                        "ysrc": "jeonyl:12:a2897e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6af753",
                        "ysrc": "jeonyl:12:d001dd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5ee40c",
                        "ysrc": "jeonyl:12:38aa78",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:b4c727",
                        "ysrc": "jeonyl:12:291e95",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5780b1",
                        "ysrc": "jeonyl:12:e4e214",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:94a351",
                        "ysrc": "jeonyl:12:d7c32c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2bc82e",
                        "ysrc": "jeonyl:12:b626d9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5fb665",
                        "ysrc": "jeonyl:12:797fc7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3e622f",
                        "ysrc": "jeonyl:12:838438",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:32a294",
                        "ysrc": "jeonyl:12:1782ba",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:91fda9",
                        "ysrc": "jeonyl:12:ca43a4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1f7f7e",
                        "ysrc": "jeonyl:12:b07550",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c82613",
                        "ysrc": "jeonyl:12:cb9ddd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:0c1e32",
                        "ysrc": "jeonyl:12:9b529e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c51249",
                        "ysrc": "jeonyl:12:45472d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ba9b9c",
                        "ysrc": "jeonyl:12:3ac371",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:54f1f0",
                        "ysrc": "jeonyl:12:138623",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:30f9e8",
                        "ysrc": "jeonyl:12:dcbd60",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ed28f8",
                        "ysrc": "jeonyl:12:d50907",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cf8fcf",
                        "ysrc": "jeonyl:12:0ea964",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:215d2c",
                        "ysrc": "jeonyl:12:f641be",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2c4fee",
                        "ysrc": "jeonyl:12:5cd013",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:31ec7e",
                        "ysrc": "jeonyl:12:4b58b3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f3faa3",
                        "ysrc": "jeonyl:12:be9b44",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2141a5",
                        "ysrc": "jeonyl:12:c8525e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:92d2b3",
                        "ysrc": "jeonyl:12:5c7aa1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a5d0bc",
                        "ysrc": "jeonyl:12:3f2159",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:bda29d",
                        "ysrc": "jeonyl:12:d4f7d7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:be300f",
                        "ysrc": "jeonyl:12:17d03f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6e3f49",
                        "ysrc": "jeonyl:12:448203",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ddf2ff",
                        "ysrc": "jeonyl:12:15914a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7ee052",
                        "ysrc": "jeonyl:12:f66310",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f547c1",
                        "ysrc": "jeonyl:12:e54821",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2bcd68",
                        "ysrc": "jeonyl:12:480004",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e3bc2e",
                        "ysrc": "jeonyl:12:d09a41",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:acaece",
                        "ysrc": "jeonyl:12:163dc1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:07e1d6",
                        "ysrc": "jeonyl:12:ca5b2e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:5df2fa",
                        "ysrc": "jeonyl:12:bc4078",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f99b65",
                        "ysrc": "jeonyl:12:a663a1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7943a2",
                        "ysrc": "jeonyl:12:17ca83",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:748b77",
                        "ysrc": "jeonyl:12:850091",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:95978b",
                        "ysrc": "jeonyl:12:2187a2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cc1741",
                        "ysrc": "jeonyl:12:df1e73",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:546b87",
                        "ysrc": "jeonyl:12:0f607d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c6ea19",
                        "ysrc": "jeonyl:12:65f3f1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:c3e226",
                        "ysrc": "jeonyl:12:e59a69",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2c07cc",
                        "ysrc": "jeonyl:12:10c0f8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:ef1481",
                        "ysrc": "jeonyl:12:212070",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:99d784",
                        "ysrc": "jeonyl:12:e786e0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a5f106",
                        "ysrc": "jeonyl:12:ff6876",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:acac3e",
                        "ysrc": "jeonyl:12:95e9f5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6cfbe7",
                        "ysrc": "jeonyl:12:cb94bd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cf2a32",
                        "ysrc": "jeonyl:12:bcd7bb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:53b470",
                        "ysrc": "jeonyl:12:659a33",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7c43c3",
                        "ysrc": "jeonyl:12:c5a2b2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f8219a",
                        "ysrc": "jeonyl:12:f5bf75",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:a5f8c7",
                        "ysrc": "jeonyl:12:ac16b8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:cc9744",
                        "ysrc": "jeonyl:12:1c8825",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:3514aa",
                        "ysrc": "jeonyl:12:063549",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:1b460f",
                        "ysrc": "jeonyl:12:b6791d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:658b7b",
                        "ysrc": "jeonyl:12:e98bb4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:e83f8c",
                        "ysrc": "jeonyl:12:8fc28d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:f3f707",
                        "ysrc": "jeonyl:12:6f63a1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:7d527e",
                        "ysrc": "jeonyl:12:7dd5c6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:824b03",
                        "ysrc": "jeonyl:12:4babf8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:404e47",
                        "ysrc": "jeonyl:12:2a63f7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:838957",
                        "ysrc": "jeonyl:12:7b5883",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:690127",
                        "ysrc": "jeonyl:12:adba0d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:9c3a46",
                        "ysrc": "jeonyl:12:6fe7ab",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:6537c5",
                        "ysrc": "jeonyl:12:354623",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "jeonyl:12:2803d5",
                        "ysrc": "jeonyl:12:a06711",
                        "marker": {
                            "cmax": 80,
                            "cmin": 1,
                            "size": 100,
                            "colorbar": {
                                "x": 1.0,
                                "len": 0.95,
                                "title": {
                                    "side": "top",
                                    "text": "RSL"
                                },
                                "lenmode": "fraction",
                                "xanchor": "left",
                                "tickmode": "array",
                                "thickness": 20,
                                "ticktextsrc": "jeonyl:12:3baab0",
                                "tickvalssrc": "jeonyl:12:81ee97",
                                "thicknessmode": "pixels"
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.013513513513513514,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.02702702702702703,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.04054054054054054,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.05405405405405406,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.06756756756756757,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.08108108108108109,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.0945945945945946,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.10810810810810811,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.12162162162162163,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.13513513513513514,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.14864864864864866,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.16216216216216217,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.17567567567567569,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.1891891891891892,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.20270270270270271,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.21621621621621623,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.22972972972972974,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.24324324324324326,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.25675675675675674,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.2702702702702703,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.28378378378378377,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.2972972972972973,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.3108108108108108,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.32432432432432434,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.33783783783783783,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.35135135135135137,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.36486486486486486,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.3783783783783784,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.3918918918918919,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.40540540540540543,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4189189189189189,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.43243243243243246,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.44594594594594594,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4594594594594595,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.47297297297297297,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4864864864864865,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5135135135135135,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.527027027027027,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5405405405405406,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5540540540540541,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.5675675675675675,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.581081081081081,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.5945945945945946,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6081081081081081,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6216216216216216,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6351351351351351,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6486486486486487,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6621621621621622,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6756756756756757,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6891891891891891,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7027027027027027,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7162162162162162,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7297297297297297,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7432432432432432,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7567567567567568,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7702702702702703,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7837837837837838,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7972972972972973,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8108108108108109,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8243243243243243,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8378378378378378,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8513513513513513,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8648648648648649,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8783783783783784,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8918918918918919,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.9054054054054054,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.918918918918919,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9324324324324325,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9459459459459459,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9594594594594594,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.972972972972973,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9864864864864865,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    1.0,
                                    "rgba(75,0,130,0.5)"
                                ]
                            ]
                        },
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "time[m]"
                        },
                        "mirror": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Relaxation voltage[V]"
                        },
                        "mirror": true
                    },
                    "height": 600,
                    "legend": {
                        "font": {
                            "size": 18
                        }
                    },
                    "margin": {
                        "t": 50
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T07:13:34.222587Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sven.sandberg/51.embed",
            "fid": "sven.sandberg:51",
            "filename": "Provtryckning 8 april",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sven.sandberg/51/9_KEHPKAP8ZFFDRFIK6KAZIFFZECO75L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sven.sandberg/51/2_29LW2GZ7SBN82A8GH94ZFD3ZIGH86W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sven.sandberg/51/8_4XYPQ4T1W4WQ015CEBTXJAQAXP54TW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sven.sandberg/51/9_KEHPKAP8ZFFDRFIK6KAZIFFZECO75L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sven.sandberg:51",
                "plots": "https://api.plotly.com/v2/plots/sven.sandberg:51",
                "parent": "https://api.plotly.com/v2/folders/home?user=sven.sandberg"
            },
            "owner": "sven.sandberg",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~sven.sandberg/51/",
            "world_readable": true,
            "date_modified": "2024-04-12T07:13:34.233Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sven.sandberg/51/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Uthus",
                        "type": "scatter",
                        "xsrc": "sven.sandberg:50:134131",
                        "ysrc": "sven.sandberg:50:079914"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Under trappan",
                        "type": "scatter",
                        "xsrc": "sven.sandberg:50:134131",
                        "ysrc": "sven.sandberg:50:05016c",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "sven.sandberg:50:134131",
                        "ysrc": "sven.sandberg:50:079914"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "sven.sandberg:50:134131",
                        "ysrc": "sven.sandberg:50:05016c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2024-04-08 11:57:28.1663",
                            "2024-04-11 12:52:31.8337"
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "gridwidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 0.1,
                        "range": [
                            0,
                            1.7
                        ],
                        "tickmode": "linear",
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sven.sandberg",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-12-21 19:57:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sven.sandberg",
                "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-12T06:35:49.522741Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AllenDG/1.embed",
            "fid": "AllenDG:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/AllenDG:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/AllenDG:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AllenDG/1/8_K7HEEAC2AS4EM5LOYNEYAT99T3RGUN.png",
                "list-thumb": "https://api.plotly.com/v2/files/AllenDG:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AllenDG:1",
                "plots": "https://api.plotly.com/v2/plots/AllenDG:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=AllenDG"
            },
            "owner": "AllenDG",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~AllenDG/1/",
            "world_readable": true,
            "date_modified": "2024-04-26T02:04:08.091Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AllenDG/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "dash": "dash",
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D",
                                "text": "D",
                                "textposition": ""
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Desired converted plastic<br>",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:fadeb1",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(239, 85, 59)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "opacity": 1,
                        "textsrc": "AllenDG:0:fadeb1",
                        "visible": true,
                        "hoverinfo": "x+y+text+name",
                        "showlegend": false,
                        "connectgaps": true,
                        "textposition": "top center"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": "B"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Simulated Conversion",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:e9e5cc",
                        "marker": {
                            "size": 6,
                            "color": "#EF553B"
                        },
                        "textsrc": "AllenDG:0:e9e5cc",
                        "showlegend": true,
                        "textposition": "top center"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "text": "C"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Historical Conversion",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:298fc2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "textsrc": "AllenDG:0:298fc2",
                        "visible": true,
                        "showlegend": true,
                        "textposition": "bottom center"
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E",
                                "text": "E"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Desired plastic collection",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:ce0aa8",
                        "marker": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "textsrc": "AllenDG:0:ce0aa8",
                        "visible": true,
                        "groupnorm": "",
                        "stackgaps": "infer zero",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "bottom center"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F",
                                "text": "F"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Historical Plastic Collected",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:179c98",
                        "textsrc": "AllenDG:0:179c98",
                        "showlegend": true,
                        "stackgroup": null,
                        "textposition": "top center"
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G",
                                "text": "G"
                            }
                        },
                        "mode": "markers+lines+text",
                        "type": "scatter",
                        "xsrc": "AllenDG:0:8004a8",
                        "ysrc": "AllenDG:0:c2cbe5",
                        "marker": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "opacity": 1,
                        "textsrc": "AllenDG:0:c2cbe5",
                        "showlegend": false,
                        "stackgroup": null,
                        "textposition": "top center"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            2014.4039992234518,
                            2025.5960007765482
                        ],
                        "title": {
                            "text": "Years"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "linear",
                        "autorange": true,
                        "automargin": true,
                        "showspikes": false,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 0.05,
                        "range": [
                            1759.8310273972602,
                            92121.62897260273
                        ],
                        "tick0": 0.15,
                        "ticks": "",
                        "title": {
                            "text": "Weight collected annualy (Million Tons/Yr)"
                        },
                        "nticks": 8,
                        "tickmode": "linear",
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "valign": "top"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AllenDG",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 06:35:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AllenDG",
                "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-12T06:21:15.247988Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shinheepark/18.embed",
            "fid": "shinheepark:18",
            "filename": "spotify",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shinheepark:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shinheepark:18/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shinheepark/18/8_EMY4DGHDT10HSKUJZNW1BA70XJC5TH.png",
                "list-thumb": "https://api.plotly.com/v2/files/shinheepark:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shinheepark:18",
                "plots": "https://api.plotly.com/v2/plots/shinheepark:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=shinheepark"
            },
            "owner": "shinheepark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 34,
            "web_url": "https://chart-studio.plotly.com/~shinheepark/18/",
            "world_readable": true,
            "date_modified": "2024-05-10T08:46:38.935Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shinheepark/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "",
                        "type": "scattergl",
                        "xsrc": "shinheepark:39:0d54a3",
                        "ysrc": "shinheepark:39:261701",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertemplate": "date=%{x}<br>acc=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "spotify"
                    },
                    "width": 800,
                    "xaxis": {
                        "title": {
                            "text": "date"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "acc"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shinheepark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-12 06:02:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shinheepark",
                "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-12T06:21:11.470987Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shinheepark/16.embed",
            "fid": "shinheepark:16",
            "filename": "twitter",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shinheepark:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shinheepark:16/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/shinheepark:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/shinheepark:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shinheepark:16",
                "plots": "https://api.plotly.com/v2/plots/shinheepark:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=shinheepark"
            },
            "owner": "shinheepark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 36,
            "web_url": "https://chart-studio.plotly.com/~shinheepark/16/",
            "world_readable": true,
            "date_modified": "2024-05-10T08:46:33.826Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shinheepark/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "",
                        "type": "scattergl",
                        "xsrc": "shinheepark:38:6c804f",
                        "ysrc": "shinheepark:38:27af11",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertemplate": "date=%{x}<br>acc=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "twitter"
                    },
                    "width": 800,
                    "xaxis": {
                        "title": {
                            "text": "date"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "acc"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shinheepark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-12 06:02:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shinheepark",
                "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-12T06:21:07.674027Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shinheepark/14.embed",
            "fid": "shinheepark:14",
            "filename": "instagram",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shinheepark:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shinheepark:14/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/shinheepark:14/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/shinheepark:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shinheepark:14",
                "plots": "https://api.plotly.com/v2/plots/shinheepark:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=shinheepark"
            },
            "owner": "shinheepark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 36,
            "web_url": "https://chart-studio.plotly.com/~shinheepark/14/",
            "world_readable": true,
            "date_modified": "2024-05-10T08:55:33.774Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shinheepark/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "",
                        "type": "scattergl",
                        "xsrc": "shinheepark:42:72ee77",
                        "ysrc": "shinheepark:42:ab38bc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertemplate": "date=%{x}<br>acc=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "instagram"
                    },
                    "width": 800,
                    "xaxis": {
                        "title": {
                            "text": "date"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "acc"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shinheepark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-12 06:02:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shinheepark",
                "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-12T06:21:03.783794Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shinheepark/12.embed",
            "fid": "shinheepark:12",
            "filename": "channel",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shinheepark:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shinheepark:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/shinheepark:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/shinheepark:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shinheepark:12",
                "plots": "https://api.plotly.com/v2/plots/shinheepark:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=shinheepark"
            },
            "owner": "shinheepark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 45,
            "web_url": "https://chart-studio.plotly.com/~shinheepark/12/",
            "world_readable": true,
            "date_modified": "2024-05-10T08:55:28.808Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shinheepark/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "",
                        "type": "scattergl",
                        "xsrc": "shinheepark:41:3335c2",
                        "ysrc": "shinheepark:41:ecc74f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertemplate": "date=%{x}<br>acc=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "channel"
                    },
                    "width": 800,
                    "xaxis": {
                        "title": {
                            "text": "date"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "acc"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shinheepark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-12 06:02:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shinheepark",
                "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-12T06:09:28.955515Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lizlara12345678/1.embed",
            "fid": "lizlara12345678:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lizlara12345678/1/9_EINL4IE7YJAORSSTNTEZ2EOIPIGRQF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lizlara12345678/1/2_RVAFINGUR2W9LXIXE2CLQIQMSGXD67.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lizlara12345678/1/8_DEJD7SJGJXBGT3T0FF1KE5OKV97FIH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lizlara12345678/1/9_EINL4IE7YJAORSSTNTEZ2EOIPIGRQF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lizlara12345678:1",
                "plots": "https://api.plotly.com/v2/plots/lizlara12345678:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=lizlara12345678"
            },
            "owner": "lizlara12345678",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lizlara12345678/1/",
            "world_readable": true,
            "date_modified": "2024-04-12T06:09:28.967Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lizlara12345678/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(86, 97, 213)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "BPDE",
                        "type": "scatter",
                        "xsrc": "lizlara12345678:0:403832",
                        "ysrc": "lizlara12345678:0:5cb077",
                        "marker": {
                            "size": 9,
                            "symbol": "circle",
                            "opacity": 0.76
                        }
                    },
                    {
                        "line": {
                            "dash": "longdashdot",
                            "color": "rgb(221, 141, 84)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "BPE",
                        "type": "scatter",
                        "xsrc": "lizlara12345678:0:f11e85",
                        "ysrc": "lizlara12345678:0:8972ff",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 9,
                            "color": "rgb(233, 125, 49)",
                            "symbol": "circle-open",
                            "opacity": 0.48
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.48,
                        "font": {
                            "size": 16,
                            "family": "Old Standard TT"
                        },
                        "text": "$\\text{Difference Between Ionization Energies (Simulation vs  CAS - Cl)}$"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 0,
                        "range": [
                            0.9457154503189658,
                            3.058571855901696
                        ],
                        "tick0": 0,
                        "ticks": "inside",
                        "title": {
                            "text": "$\\rm R(H\\cdots H)/ A^°$"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 15,
                            "family": "Liberation Sans"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "linecolor": "rgb(38, 39, 40)",
                        "linewidth": 4,
                        "tickwidth": 4,
                        "zerolinecolor": "rgb(18, 81, 190)",
                        "zerolinewidth": 10
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.5717271213238411,
                            2.4317391745093584
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "$\\Delta E_{ST}(S) - \\Delta E_{ST}(Cl)$"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true,
                        "linecolor": "rgb(38, 39, 40)",
                        "linewidth": 3,
                        "tickwidth": 4
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lizlara12345678",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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-11 20:05:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lizlara12345678",
                "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-12T06:07:42.109607Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shinheepark/1.embed",
            "fid": "shinheepark:1",
            "filename": "test",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shinheepark/1/9_710KFYJQVL8MDQPMGGHM0SK8T4A0IN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shinheepark/1/2_GATWRMJQE0MN8HXZZCY5NU1A606NW4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shinheepark/1/8_H64NPJCDET8E58BR1LW09KDOII3HKL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shinheepark/1/9_710KFYJQVL8MDQPMGGHM0SK8T4A0IN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shinheepark:1",
                "plots": "https://api.plotly.com/v2/plots/shinheepark:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=shinheepark"
            },
            "owner": "shinheepark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 34,
            "web_url": "https://chart-studio.plotly.com/~shinheepark/1/",
            "world_readable": true,
            "date_modified": "2024-04-12T09:39:21.024Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shinheepark/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "indianred"
                        },
                        "mode": "markers+lines",
                        "name": "channel",
                        "type": "scatter",
                        "xsrc": "shinheepark:21:859813",
                        "ysrc": "shinheepark:21:b160e5"
                    },
                    {
                        "line": {
                            "color": "deeppink"
                        },
                        "mode": "markers+lines",
                        "name": "instagram",
                        "type": "scatter",
                        "xsrc": "shinheepark:21:5498b0",
                        "ysrc": "shinheepark:21:b5da72"
                    },
                    {
                        "line": {
                            "color": "skyblue"
                        },
                        "mode": "markers+lines",
                        "name": "twitter",
                        "type": "scatter",
                        "xsrc": "shinheepark:21:de53c5",
                        "ysrc": "shinheepark:21:37bd05"
                    },
                    {
                        "line": {
                            "color": "forestgreen"
                        },
                        "mode": "markers+lines",
                        "name": "spotify",
                        "type": "scatter",
                        "xsrc": "shinheepark:21:d7b04f",
                        "ysrc": "shinheepark:21:0a7775"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "All"
                    },
                    "width": 800,
                    "xaxis": {
                        "title": {
                            "text": "date"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "rescaled"
                        }
                    },
                    "height": 500,
                    "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
                            }
                        }
                    }
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shinheepark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-12 06:02:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shinheepark",
                "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-12T05:18:44.796376Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~e21cseu0065/12.embed",
            "fid": "e21cseu0065:12",
            "filename": "Task4-dashboard-layout",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/e21cseu0065/12/9_J0B9DON1H9UHW6ALEBOQRHRUO7WLOH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/e21cseu0065/12/2_097NS6GXBT9RCW55GFJMH91JK7DQQ4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/e21cseu0065/12/8_DJS7O13IPE1JHXLM6CH5TOUKKDA5PX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/e21cseu0065/12/9_J0B9DON1H9UHW6ALEBOQRHRUO7WLOH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/e21cseu0065:12",
                "plots": "https://api.plotly.com/v2/plots/e21cseu0065:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=e21cseu0065"
            },
            "owner": "e21cseu0065",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~e21cseu0065/12/",
            "world_readable": true,
            "date_modified": "2024-04-15T05:34:50.842Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~e21cseu0065/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "e21cseu0065:17:f518ed",
                        "ysrc": "e21cseu0065:17:33520e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "textsrc": "e21cseu0065:17:0178c0",
                        "textfont": {
                            "size": 12,
                            "color": "red",
                            "family": "Arial"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "e21cseu0065:17:443b2f",
                        "ysrc": "e21cseu0065:17:8fce48",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "type": "box",
                        "ysrc": "e21cseu0065:17:a87746",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "type": "box",
                        "ysrc": "e21cseu0065:17:39e3bd",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14,
                        "color": "navy",
                        "family": "Arial"
                    },
                    "title": {
                        "text": "Task4-Dashboard Layout"
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            0.375
                        ]
                    },
                    "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
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Box 1",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Box 2",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.375,
                            "font": {
                                "size": 16
                            },
                            "text": "Box 3",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "paper_bgcolor": "lightblue"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~e21cseu0065",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 04:39:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "e21cseu0065",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}