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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE4JTNBMzUlM0EyNC4yODYzNDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxOCUzQTQxJTNBMjkuOTczMTU4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T18:41:29.973158Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jk082wp/13.embed",
            "fid": "jk082wp:13",
            "filename": "testdifferent",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jk082wp:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jk082wp/13/2_OSXEDW8IFWRR16MCOEGK1QL9JYKT8G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jk082wp/13/8_WRPCFQ4D3ZEIS7EYWTE5SHT2RLV9QA.png",
                "list-thumb": "https://api.plotly.com/v2/files/jk082wp:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jk082wp:13",
                "plots": "https://api.plotly.com/v2/plots/jk082wp:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=jk082wp"
            },
            "owner": "jk082wp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jk082wp/13/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:41:30.418Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jk082wp/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "bbf2c1cb-d328-4c08-8bd4-39fcce56fbe4",
                        "type": "scatter",
                        "xsrc": "jk082wp:14:5aee6d",
                        "ysrc": "jk082wp:14:bb87c5",
                        "opacity": 0.75
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jk082wp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-11 14:05:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jk082wp",
                "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": "2019-06-17T18:41:14.983676Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bcowden/26.embed",
            "fid": "bcowden:26",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bcowden:26/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bcowden:26/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/bcowden:26/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bcowden:26/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bcowden:26",
                "plots": "https://api.plotly.com/v2/plots/bcowden:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=bcowden"
            },
            "owner": "bcowden",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Understanding Modes, Lacing Value Relationship",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bcowden/26/understanding-modes-lacing-value-relationship/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:41:15.811Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bcowden/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6c2b1c91-817d-448b-8265-c9e489e4e437",
                        "mode": "markers",
                        "name": "2000",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(0.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "57d8fc39-dbcc-4b7a-9d03-6ac060201166",
                        "mode": "markers",
                        "name": "2001",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(6.923076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "fa14aaca-9181-416e-923f-1604c4032d3d",
                        "mode": "markers",
                        "name": "2002",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(13.846153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "3f242913-9eec-4487-a759-23b38244ad53",
                        "mode": "markers",
                        "name": "2003",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(20.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "7a28b8e8-af7b-4e2b-8559-b690752585fc",
                        "mode": "markers",
                        "name": "2004",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(27.692307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "ceac36b3-5502-45c8-8a8d-3bf119307163",
                        "mode": "markers",
                        "name": "2005",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(34.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "e3941f65-191a-4c3e-96d7-4ce252d76def",
                        "mode": "markers",
                        "name": "2006",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(41.53846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "df3a920d-e41d-45ef-9ea9-2716aa8255d7",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(48.46153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "04cf70a6-79e2-4e36-a06d-f90bcf1f9a61",
                        "mode": "markers",
                        "name": "2008",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(55.38461538461539,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "026c8c9a-dabd-4453-8500-cff1a6630883",
                        "mode": "markers",
                        "name": "2009",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(62.30769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "b44c9b1a-8ab0-4080-aad0-7c62a3c13b6c",
                        "mode": "markers",
                        "name": "2010",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(69.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "4799471c-5980-4c33-bb1d-8abefa3acf83",
                        "mode": "markers",
                        "name": "2011",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(76.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "e6118942-d6ee-4637-813e-f8f8d2a74ff1",
                        "mode": "markers",
                        "name": "2012",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(83.07692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "3b903c8f-336c-473e-9b98-0e6c87aacf4e",
                        "mode": "markers",
                        "name": "2013",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(90.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "500c0b4c-9f64-4482-813e-5102d1a2d348",
                        "mode": "markers",
                        "name": "2014",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(96.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "d741bae7-c9fd-4346-adbf-7ecf4a0c2dc9",
                        "mode": "markers",
                        "name": "2015",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(103.84615384615385,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "059204bd-81ff-4cd0-9200-e6a4c8d1ac8e",
                        "mode": "markers",
                        "name": "2016",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(110.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "de560f0c-5456-4a80-89f8-37dc5ddaa255",
                        "mode": "markers",
                        "name": "2017",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(117.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "e0422ef4-9d2f-49e8-8eb9-9c9afc38421e",
                        "mode": "markers",
                        "name": "2018",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(124.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "94a31a46-c251-401c-93be-bfa617073d45",
                        "mode": "markers",
                        "name": "2019",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(131.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "4e2fd7e7-72ed-4bac-8e70-36e075e2359a",
                        "mode": "markers",
                        "name": "2020",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(138.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "a77f5510-bf4b-4cc4-8a11-d88af175518d",
                        "mode": "markers",
                        "name": "2021",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(145.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "45e97962-7d31-48b0-bbbf-5044dfa065f2",
                        "mode": "markers",
                        "name": "2022",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(152.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "e61b0da0-c010-411a-9b06-1f833f1e44e2",
                        "mode": "markers",
                        "name": "2023",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(159.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "c78402d4-5fd7-48e9-b61a-37db30bbaba8",
                        "mode": "markers",
                        "name": "2024",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(166.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "a35c08a7-4bdb-4e16-8d10-615dff48f3cb",
                        "mode": "markers",
                        "name": "2025",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(173.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "14b8dace-088a-4adb-949e-b903d5760a73",
                        "mode": "markers",
                        "name": "2026",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(180.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "c2c0439c-edf3-4835-93bf-6077ab567724",
                        "mode": "markers",
                        "name": "2027",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(186.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "7f067875-9dba-4b4d-b107-2bbb509bb19f",
                        "mode": "markers",
                        "name": "2028",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(193.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "5b0224b4-6dec-4fcd-98fd-f9ab7cba74dc",
                        "mode": "markers",
                        "name": "2029",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(200.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "64e45109-47d4-451d-8d3e-11c872c329a4",
                        "mode": "markers",
                        "name": "2030",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(207.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "2dfab23f-ddbb-4360-8306-92f1a8ed89db",
                        "mode": "markers",
                        "name": "2031",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(214.6153846153846,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "0e37a901-4539-4c84-9944-90b07afc7b58",
                        "mode": "markers",
                        "name": "2032",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(221.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "331d3a71-5bef-4d51-a760-8aae2f0926b8",
                        "mode": "markers",
                        "name": "2033",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(228.46153846153848,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "62a42dd6-a6b5-4b16-b357-eb09cee905a7",
                        "mode": "markers",
                        "name": "2034",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(235.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "43c95761-5198-4369-9546-36560eb3c0bc",
                        "mode": "markers",
                        "name": "2035",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(242.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "395c5b7b-1d7e-4fcf-ab34-2ea88835ce53",
                        "mode": "markers",
                        "name": "2036",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(249.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "f6cc1045-3403-41ca-982a-cb6e94b29b92",
                        "mode": "markers",
                        "name": "2037",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(256.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "749bec71-344c-472e-867a-82a650144ebe",
                        "mode": "markers",
                        "name": "2038",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(263.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "142ea813-9fd7-4ea3-a5f9-8bff0a579063",
                        "mode": "markers",
                        "name": "2039",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(270.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "283b95e7-f447-422b-b8d7-34160681869f",
                        "mode": "markers",
                        "name": "2040",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(276.9230769230769,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "3e4e2b97-7117-4a52-9f65-e8f65cd88ec8",
                        "mode": "markers",
                        "name": "2041",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(283.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "db5e4e7f-88e6-4875-b7a2-323385db9dd7",
                        "mode": "markers",
                        "name": "2042",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(290.7692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "459a5f2d-8d4b-4f90-9abe-85b70d5ada06",
                        "mode": "markers",
                        "name": "2043",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(297.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "367df4d9-55a4-4bed-9d96-dedf7c6cf53d",
                        "mode": "markers",
                        "name": "2044",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(304.61538461538464,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "d979146e-6cbe-40ee-b99b-4dbc4229fa1d",
                        "mode": "markers",
                        "name": "2045",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(311.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "211df414-0e34-403d-91b4-cc099ac3a888",
                        "mode": "markers",
                        "name": "2046",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(318.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "e76e6069-8517-485d-8f17-86718a627316",
                        "mode": "markers",
                        "name": "2047",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(325.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "5520c442-c42d-4f1b-a819-6a26a8bf8954",
                        "mode": "markers",
                        "name": "2048",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(332.3076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "8fcc4dd7-765d-403d-9bcb-985f13fa45de",
                        "mode": "markers",
                        "name": "2049",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(339.2307692307692,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "a9e02fd1-bc03-48d4-af7c-53b3b51e8d31",
                        "mode": "markers",
                        "name": "2050",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(346.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "7ec1c16f-bdd6-41a1-b02f-bb18924a354f",
                        "mode": "markers",
                        "name": "2051",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(353.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    },
                    {
                        "uid": "1a7070ca-e01a-4699-bd06-2597fe8c9d1d",
                        "mode": "markers",
                        "name": "2052",
                        "type": "scatter",
                        "xsrc": "bcowden:27:83461e",
                        "ysrc": "bcowden:27:720893",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(360.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:27:8c03ac"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Understanding Modes, Lacing Value Relationship"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Lacing Value Left"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "Lacing Value Right"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bcowden",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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": "2019-06-14 20:28:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bcowden",
                "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": "2019-06-17T18:40:47.116379Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/68.embed",
            "fid": "ocing66:68",
            "filename": "降水量",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:68/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ocing66/68/2_TPQNM4BVCVYHZW5TP3F84Q2JMNXFF7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/68/8_PKMMJRDFMCWGM6EODB7UW9WQSRS1QV.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:68/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:68",
                "plots": "https://api.plotly.com/v2/plots/ocing66:68",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "降水量",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~ocing66/68/",
            "world_readable": true,
            "date_modified": "2019-11-30T16:01:10.893Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/68/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "77b4c06d-b3be-4ccb-a127-fd0654c2de57",
                        "line": {
                            "color": "#bfcf17"
                        },
                        "name": "臺北(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:e797be",
                        "opacity": 0.8
                    },
                    {
                        "uid": "fdf8b205-1faf-4c69-8a7e-a89aa94ad022",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:3e2409",
                        "opacity": 0.8
                    },
                    {
                        "uid": "fc563f09-9a64-4262-86bd-9cc8bb6ed148",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:3bfc6f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "f7727b11-3a60-4102-bed4-52b11bb5ea2b",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:1a43d1",
                        "opacity": 0.8
                    },
                    {
                        "uid": "e0c0c8af-2a61-4cdb-90a1-6783b4ba0dbc",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:28a17a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "08ea1165-acd0-4110-b2ee-bc0276979642",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(毫米)",
                        "type": "scatter",
                        "xsrc": "ocing66:69:72416b",
                        "ysrc": "ocing66:69:3b828d",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "降水量"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ocing66",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-25 13:37:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ocing66",
                "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": "2019-06-17T18:40:46.861748Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jk082wp/11.embed",
            "fid": "jk082wp:11",
            "filename": "graph1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jk082wp:11/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jk082wp:11/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jk082wp/11/8_P801DAZELCEC5BTRK47JDYYW1L0PP9.png",
                "list-thumb": "https://api.plotly.com/v2/files/jk082wp:11/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jk082wp:11",
                "plots": "https://api.plotly.com/v2/plots/jk082wp:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=jk082wp"
            },
            "owner": "jk082wp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Group 1, Group 2, Group 3, Group 1, Group 2, Group 3",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jk082wp/11/group-1-group-2-group-3-group-1-group-2-group-3/",
            "world_readable": true,
            "date_modified": "2019-08-31T14:35:37.476Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jk082wp/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "86aa6dfb-acb1-4c41-8f2a-a457bbd39473",
                        "mode": "lines",
                        "name": "Group 1",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:f598dc",
                        "ysrc": "jk082wp:12:605317",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#333F44"
                        },
                        "showlegend": true,
                        "legendgroup": "Group 1"
                    },
                    {
                        "uid": "682e9dc4-d73b-4750-9a13-3c2f3ba72625",
                        "mode": "lines",
                        "name": "Group 2",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:e6af5f",
                        "ysrc": "jk082wp:12:675c30",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#37AA9C"
                        },
                        "showlegend": true,
                        "legendgroup": "Group 2"
                    },
                    {
                        "uid": "8d3e0013-25c3-4d61-a356-2501f1d0796a",
                        "mode": "lines",
                        "name": "Group 3",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:fadfec",
                        "ysrc": "jk082wp:12:811c2c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#94F3E4"
                        },
                        "showlegend": true,
                        "legendgroup": "Group 3"
                    },
                    {
                        "uid": "04c50f1e-e8c7-4443-92b9-8d921d5af2b7",
                        "mode": "markers",
                        "name": "Group 1",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:08b0d2",
                        "ysrc": "jk082wp:12:5c9b48",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#333F44",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Group 1"
                    },
                    {
                        "uid": "7bd4b3e3-0d2c-4218-8e74-338d6bcc6a14",
                        "mode": "markers",
                        "name": "Group 2",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:e7f3e7",
                        "ysrc": "jk082wp:12:f896b4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#37AA9C",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Group 2"
                    },
                    {
                        "uid": "c6aaa535-a611-42e6-9766-1b945009a44f",
                        "mode": "markers",
                        "name": "Group 3",
                        "type": "scatter",
                        "xsrc": "jk082wp:12:91e79b",
                        "ysrc": "jk082wp:12:776f97",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#94F3E4",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Group 3"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jk082wp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-11 14:05:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jk082wp",
                "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": "2019-06-17T18:39:10.747051Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/66.embed",
            "fid": "ocing66:66",
            "filename": "降水日數",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:66/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ocing66/66/2_ETUFB9QC7WCN7NO16UP3E9ZEHLIKKZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/66/8_AYMMF0B6U6PL2NS82ZWO6OZ8SWPD5K.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:66/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:66",
                "plots": "https://api.plotly.com/v2/plots/ocing66:66",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "降水日數",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~ocing66/66/",
            "world_readable": true,
            "date_modified": "2019-11-30T16:01:13.154Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/66/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ff33dbed-c2bf-46e6-881b-b111556d7aad",
                        "line": {
                            "color": "#bfcf17"
                        },
                        "name": "臺北(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:193416",
                        "opacity": 0.8
                    },
                    {
                        "uid": "191e4806-158a-4aef-81a0-a4546ce83a58",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:ce8c89",
                        "opacity": 0.8
                    },
                    {
                        "uid": "5bcc9682-a65e-4338-8729-4a741553e685",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:c67391",
                        "opacity": 0.8
                    },
                    {
                        "uid": "a2ef9d0e-7925-4caa-86a0-9b4add89e393",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:379522",
                        "opacity": 0.8
                    },
                    {
                        "uid": "76fd2894-7cc3-4a4a-b6a0-2184ae12e9b4",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:32b002",
                        "opacity": 0.8
                    },
                    {
                        "uid": "865e4c23-028c-41d0-ae50-7d550bcd2f8e",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:67:31dd23",
                        "ysrc": "ocing66:67:e0d63b",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "降水日數"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ocing66",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-25 13:37:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ocing66",
                "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": "2019-06-17T18:36:55.989463Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~victor.celleguin/220.embed",
            "fid": "victor.celleguin:220",
            "filename": "table_destiny_plus",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/victor.celleguin:220/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/victor.celleguin/220/2_YHWW9MVP7QI1JQ2WRTITXIVG3D1UES.png",
                "block-thumb": "https://api.plotly.com/v2/files/victor.celleguin:220/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/victor.celleguin:220/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/victor.celleguin:220",
                "plots": "https://api.plotly.com/v2/plots/victor.celleguin:220",
                "parent": "https://api.plotly.com/v2/folders/victor.celleguin:174"
            },
            "owner": "victor.celleguin",
            "parent": 174,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~victor.celleguin/220/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:38:55.349Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~victor.celleguin/220/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7da36782-8ed4-4566-a8c7-a7dcfe6c54fc",
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "white"
                            },
                            "line": {
                                "color": "#7D7F80"
                            },
                            "alignsrc": "victor.celleguin:221:93288b",
                            "valuessrc": "victor.celleguin:221:34ec6d,9855fa,d136e8,8b486a"
                        },
                        "columnwidthsrc": "victor.celleguin:221:ad112c"
                    }
                ],
                "layout": {
                    "width": 550,
                    "height": 400
                }
            },
            "height": 400,
            "width": 550,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~victor.celleguin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-04 18:27:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "victor.celleguin",
                "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": "2019-06-17T18:36:50.976582Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~msubasri/7.embed",
            "fid": "msubasri:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/msubasri:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/msubasri:7/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/msubasri:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/msubasri:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/msubasri:7",
                "plots": "https://api.plotly.com/v2/plots/msubasri:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=msubasri"
            },
            "owner": "msubasri",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~msubasri/7/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:36:51.009Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~msubasri/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a4a974",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "msubasri:6:6d1fbb",
                        "ysrc": "msubasri:6:97996a",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "b34f34",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "msubasri:6:6d1fbb",
                        "ysrc": "msubasri:6:54266c",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "TERT Retained Intron (ENST00000503656.1)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            30.5
                        ],
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.3894736842105263
                        ],
                        "title": {
                            "text": "Expression - TPM"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~msubasri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.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": "2019-06-04 17:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "msubasri",
                "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": "2019-06-17T18:36:23.003470Z",
            "comments": {
                "results": [
                    {
                        "cid": 7599,
                        "comment": "Great work @shtolesa!",
                        "commenter": {
                            "profile_url": "https://chart-studio.plotly.com/~alhohl",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                            "bio": "",
                            "nickname": "eh",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2018-09-27 14:58:54",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "alhohl",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        },
                        "ref_id": null,
                        "creation_time": "2019-06-24T20:50:03.784172Z"
                    }
                ],
                "count": 1
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shtolesa/1.embed",
            "fid": "shtolesa:1",
            "filename": "mulitple-trace",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shtolesa:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shtolesa:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/shtolesa:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/shtolesa:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shtolesa:1",
                "plots": "https://api.plotly.com/v2/plots/shtolesa:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=shtolesa"
            },
            "owner": "shtolesa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~shtolesa/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:36:23.041Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shtolesa/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Africa",
                        "type": "scatter",
                        "xsrc": "shtolesa:0:b691d4",
                        "ysrc": "shtolesa:0:80e764",
                        "frame": "1952",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "shtolesa:0:aae13f",
                        "marker": {
                            "line": {
                                "color": "rgba(248,118,109,1)",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(248,118,109,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "shtolesa:0:06d941",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "shtolesa:0:5e4a22",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Africa"
                    },
                    {
                        "mode": "markers",
                        "name": "Americas",
                        "type": "scatter",
                        "xsrc": "shtolesa:0:072bbc",
                        "ysrc": "shtolesa:0:45a274",
                        "frame": "1952",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "shtolesa:0:9288cc",
                        "marker": {
                            "line": {
                                "color": "rgba(163,165,0,1)",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(163,165,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "shtolesa:0:52fc50",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "shtolesa:0:7fa162",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Americas"
                    },
                    {
                        "mode": "markers",
                        "name": "Asia",
                        "type": "scatter",
                        "xsrc": "shtolesa:0:123bb5",
                        "ysrc": "shtolesa:0:801b82",
                        "frame": "1952",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "shtolesa:0:b34a19",
                        "marker": {
                            "line": {
                                "color": "rgba(0,191,125,1)",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(0,191,125,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "shtolesa:0:f89474",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "shtolesa:0:59ba5f",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Asia"
                    },
                    {
                        "mode": "markers",
                        "name": "Europe",
                        "type": "scatter",
                        "xsrc": "shtolesa:0:2cfbd6",
                        "ysrc": "shtolesa:0:7263ef",
                        "frame": "1952",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "shtolesa:0:b4abd7",
                        "marker": {
                            "line": {
                                "color": "rgba(0,176,246,1)",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(0,176,246,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "shtolesa:0:0d82b0",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "shtolesa:0:f5670d",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Europe"
                    },
                    {
                        "mode": "markers",
                        "name": "Oceania",
                        "type": "scatter",
                        "xsrc": "shtolesa:0:05be97",
                        "ysrc": "shtolesa:0:feb1b9",
                        "frame": "1952",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "shtolesa:0:85f36f",
                        "marker": {
                            "line": {
                                "color": "rgba(231,107,243,1)",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(231,107,243,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "shtolesa:0:366a7f",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "shtolesa:0:10d90f",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Oceania"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:b79e11",
                                "ysrc": "shtolesa:0:10a28d",
                                "frame": "1952",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:2379b0",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:037ec0",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:8b9a8f",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:3e20f1",
                                "ysrc": "shtolesa:0:2c8d6b",
                                "frame": "1952",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:5835b1",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:456687",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:c663c4",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:e561b0",
                                "ysrc": "shtolesa:0:6ce1cb",
                                "frame": "1952",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:4c0fb0",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:2b46fe",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:7cf41e",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:1eb88e",
                                "ysrc": "shtolesa:0:4e76ef",
                                "frame": "1952",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:3d2286",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:9fe516",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:df0b3d",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:3efa37",
                                "ysrc": "shtolesa:0:8d6830",
                                "frame": "1952",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:84944d",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:48443a",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:9d2432",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1952",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:a904c3",
                                "ysrc": "shtolesa:0:3797ba",
                                "frame": "1957",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:fbecef",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:5d4eb1",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:c535a4",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:4a0de5",
                                "ysrc": "shtolesa:0:e2f463",
                                "frame": "1957",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:dfa8dd",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:b7a655",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:e47e10",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:e063ac",
                                "ysrc": "shtolesa:0:5e2789",
                                "frame": "1957",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:282884",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:e97e1d",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:8e8b1f",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:a8de84",
                                "ysrc": "shtolesa:0:721bae",
                                "frame": "1957",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:4a4a02",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:cd60ae",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:61485c",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:e378de",
                                "ysrc": "shtolesa:0:f4adfa",
                                "frame": "1957",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:5b4d6d",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:2cf1ac",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:258512",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1957",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:d7dd24",
                                "ysrc": "shtolesa:0:5ff9c5",
                                "frame": "1962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:64a2c8",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:b7cae5",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:c8ff30",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:fcd8da",
                                "ysrc": "shtolesa:0:aa4831",
                                "frame": "1962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:4ba079",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:0e38ca",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:f7c578",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:fea164",
                                "ysrc": "shtolesa:0:ed961f",
                                "frame": "1962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:ae2113",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:1753bd",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:e35ab0",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:9cbc3e",
                                "ysrc": "shtolesa:0:a6d757",
                                "frame": "1962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:e4685b",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:b984e9",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:99e4ab",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:ceabac",
                                "ysrc": "shtolesa:0:b22211",
                                "frame": "1962",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:c9bb3c",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:6e4459",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:d2d65d",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1962",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:d77045",
                                "ysrc": "shtolesa:0:def300",
                                "frame": "1967",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:e4d238",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:421afb",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:efd6a2",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:662b28",
                                "ysrc": "shtolesa:0:9930cf",
                                "frame": "1967",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:536069",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:274341",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:942794",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:3f87b9",
                                "ysrc": "shtolesa:0:9e29d0",
                                "frame": "1967",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:bd3ef8",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:014ba1",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:661578",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:b6e741",
                                "ysrc": "shtolesa:0:6ed2c4",
                                "frame": "1967",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:a2dd4b",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:e83458",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:051249",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:1a2b62",
                                "ysrc": "shtolesa:0:504ec7",
                                "frame": "1967",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:a8e961",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:74a6c6",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:8dd261",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1967",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:8bd841",
                                "ysrc": "shtolesa:0:a31590",
                                "frame": "1972",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:800a38",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:8bb66d",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:37b9d2",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:6a9999",
                                "ysrc": "shtolesa:0:a56386",
                                "frame": "1972",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:78ffde",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:271f2e",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:341c53",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:d18fa4",
                                "ysrc": "shtolesa:0:13bd11",
                                "frame": "1972",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:c051e3",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:809f53",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:e9277b",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:f8215d",
                                "ysrc": "shtolesa:0:add453",
                                "frame": "1972",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:cbcf19",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:4c93e3",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:08fe4d",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:4fa607",
                                "ysrc": "shtolesa:0:5051e7",
                                "frame": "1972",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:626509",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:5cef1a",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:93fc32",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1972",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:2b8d34",
                                "ysrc": "shtolesa:0:8d6151",
                                "frame": "1977",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:6af31b",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:197b93",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:fe2309",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:40c8dc",
                                "ysrc": "shtolesa:0:107a28",
                                "frame": "1977",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:79d74d",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:fdb5f1",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:94e6e2",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:7f537c",
                                "ysrc": "shtolesa:0:8543e9",
                                "frame": "1977",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:b84d38",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:04dac9",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:0fed17",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:1f56c2",
                                "ysrc": "shtolesa:0:39d261",
                                "frame": "1977",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:25a27a",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:28ddc6",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:920e17",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:a53594",
                                "ysrc": "shtolesa:0:d27d9e",
                                "frame": "1977",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:58d38d",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:fc9b9e",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:9d3faf",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1977",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:0c39c6",
                                "ysrc": "shtolesa:0:80a5b8",
                                "frame": "1982",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:3fbef7",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:dc45b4",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:20c214",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:612c1b",
                                "ysrc": "shtolesa:0:485133",
                                "frame": "1982",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:f662ea",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:f120b4",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:a294b3",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:7d1a81",
                                "ysrc": "shtolesa:0:ad8064",
                                "frame": "1982",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:6f6fe2",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:f5c959",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:0b1375",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:fe3076",
                                "ysrc": "shtolesa:0:758ca5",
                                "frame": "1982",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:818a26",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:985bad",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:ab7f84",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:99e8b2",
                                "ysrc": "shtolesa:0:261bd3",
                                "frame": "1982",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:b2305e",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:0b786b",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:2de32d",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1982",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:78cbe0",
                                "ysrc": "shtolesa:0:f277de",
                                "frame": "1987",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:2f3958",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:c093b1",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:6d90d3",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:63c8d8",
                                "ysrc": "shtolesa:0:652d3b",
                                "frame": "1987",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:bdc318",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:a836f4",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:f4f776",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:6b7f30",
                                "ysrc": "shtolesa:0:d20811",
                                "frame": "1987",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:d77a09",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:e460f0",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:9d3baf",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:ae93d1",
                                "ysrc": "shtolesa:0:15503d",
                                "frame": "1987",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:42f5f7",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:f11355",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:4d3874",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:c8f2fd",
                                "ysrc": "shtolesa:0:94f8fe",
                                "frame": "1987",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:878d89",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:90c044",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:4cc0f0",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1987",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:275384",
                                "ysrc": "shtolesa:0:7afd19",
                                "frame": "1992",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:316ad5",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:9b6494",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:83a587",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:d10c26",
                                "ysrc": "shtolesa:0:6ac04b",
                                "frame": "1992",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:67b388",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:7c4311",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:522c90",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:d7ebf1",
                                "ysrc": "shtolesa:0:b1b447",
                                "frame": "1992",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:bff009",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:fa14f6",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:f06d2b",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:254736",
                                "ysrc": "shtolesa:0:8bfd46",
                                "frame": "1992",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:ca3050",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:879498",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:c3a8c5",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:ae2d9a",
                                "ysrc": "shtolesa:0:effda8",
                                "frame": "1992",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:58e7a8",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:422c5e",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:e8e353",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1992",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:7db3eb",
                                "ysrc": "shtolesa:0:52b432",
                                "frame": "1997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:59193e",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:f5bfd1",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:f3fcd3",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:7324d5",
                                "ysrc": "shtolesa:0:70d2b8",
                                "frame": "1997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:914d62",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:9a2e25",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:e21140",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:8b109b",
                                "ysrc": "shtolesa:0:6665bc",
                                "frame": "1997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:c94fc5",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:50984c",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:53337e",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:eb1533",
                                "ysrc": "shtolesa:0:acd2a6",
                                "frame": "1997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:2f778e",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:b29fca",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:dc9c1f",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:90d535",
                                "ysrc": "shtolesa:0:1689a9",
                                "frame": "1997",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:16c300",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:5d8069",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:70bf0c",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "1997",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:51eaa2",
                                "ysrc": "shtolesa:0:831f85",
                                "frame": "2002",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:6aa7c9",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:cfbf5b",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:64b674",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:04c46f",
                                "ysrc": "shtolesa:0:88bd4f",
                                "frame": "2002",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:27c287",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:6faccf",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:113718",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:6347e8",
                                "ysrc": "shtolesa:0:65aad4",
                                "frame": "2002",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:d42317",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:e3fc3a",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:b139e1",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:09c971",
                                "ysrc": "shtolesa:0:9310cf",
                                "frame": "2002",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:5f61f1",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:362e43",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:50f5df",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:7acbe2",
                                "ysrc": "shtolesa:0:8eb236",
                                "frame": "2002",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:789660",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:ca632e",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:f8f9e1",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "2002",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Africa",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:f94476",
                                "ysrc": "shtolesa:0:2cfa56",
                                "frame": "2007",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:420c97",
                                "marker": {
                                    "line": {
                                        "color": "rgba(248,118,109,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(248,118,109,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:aedb7b",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:6d3be0",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Africa"
                            },
                            {
                                "mode": "markers",
                                "name": "Americas",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:69af79",
                                "ysrc": "shtolesa:0:9d489c",
                                "frame": "2007",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:2d1a8b",
                                "marker": {
                                    "line": {
                                        "color": "rgba(163,165,0,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(163,165,0,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:21a160",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:da5219",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Americas"
                            },
                            {
                                "mode": "markers",
                                "name": "Asia",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:fd8b48",
                                "ysrc": "shtolesa:0:b1689d",
                                "frame": "2007",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:96bf6b",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,191,125,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,191,125,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:7f739d",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:cfbe4d",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Asia"
                            },
                            {
                                "mode": "markers",
                                "name": "Europe",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:1e05be",
                                "ysrc": "shtolesa:0:a18239",
                                "frame": "2007",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:af619f",
                                "marker": {
                                    "line": {
                                        "color": "rgba(0,176,246,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(0,176,246,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:3b4460",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:3a654a",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Europe"
                            },
                            {
                                "mode": "markers",
                                "name": "Oceania",
                                "type": "scatter",
                                "xsrc": "shtolesa:0:b893fb",
                                "ysrc": "shtolesa:0:44ef4e",
                                "frame": "2007",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "shtolesa:0:790a1d",
                                "marker": {
                                    "line": {
                                        "color": "rgba(231,107,243,1)",
                                        "width": 1.88976377952756
                                    },
                                    "color": "rgba(231,107,243,1)",
                                    "symbol": "circle",
                                    "opacity": 1,
                                    "sizesrc": "shtolesa:0:1ce1a8",
                                    "autocolorscale": false
                                },
                                "hoveron": "points",
                                "textsrc": "shtolesa:0:ae2d4f",
                                "visible": true,
                                "hoverinfo": "text",
                                "showlegend": true,
                                "legendgroup": "Oceania"
                            }
                        ],
                        "name": "2007",
                        "traces": [
                            0,
                            1,
                            2,
                            3,
                            4
                        ]
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2.24867743229327,
                            5.18872279335025
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "gdpPercap"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "1e+03",
                            "1e+04",
                            "1e+05"
                        ],
                        "tickvals": [
                            3,
                            4,
                            5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "1e+03",
                            "1e+04",
                            "1e+05"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            20.6488,
                            85.5532
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "lifeExp"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "40",
                            "60",
                            "80"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "y": 0.861724601497983,
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.88976377952756
                    },
                    "margin": {
                        "b": 39.0260101853821,
                        "l": 37.2602739726027,
                        "r": 7.30593607305936,
                        "t": 25.0716722858387
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "sliders": [
                        {
                            "pad": {
                                "t": 40
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "1952"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1952",
                                    "value": "1952",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1957"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1957",
                                    "value": "1957",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1962"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1962",
                                    "value": "1962",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1967"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1967",
                                    "value": "1967",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1972"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1972",
                                    "value": "1972",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1977"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1977",
                                    "value": "1977",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1982"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1982",
                                    "value": "1982",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1987"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1987",
                                    "value": "1987",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1992"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1992",
                                    "value": "1992",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1997",
                                    "value": "1997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2002"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2002",
                                    "value": "2002",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2007"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2007",
                                    "value": "2007",
                                    "method": "animate"
                                }
                            ],
                            "visible": true,
                            "currentvalue": {
                                "font": {
                                    "size": 16,
                                    "color": "rgba(204,204,204,1)"
                                },
                                "prefix": "~year: ",
                                "xanchor": "right"
                            }
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 1.02,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "continent<br />pop",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0,
                            "legendTitle": true
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 0,
                            "y": 0,
                            "pad": {
                                "r": 5,
                                "t": 60
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "Play",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "right",
                            "showactive": false
                        }
                    ],
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shtolesa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 17:04:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shtolesa",
                "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": "2019-06-17T18:36:10.416046Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/168.embed",
            "fid": "katzicat:168",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:168/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:168/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/katzicat:168/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:168/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:168",
                "plots": "https://api.plotly.com/v2/plots/katzicat:168",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Austin",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~katzicat/168/austin/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:36:10.943Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/168/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4c027a9c-1053-47a4-a188-c65963c4f633",
                        "name": "Austin",
                        "type": "scatter",
                        "xsrc": "katzicat:169:c203df",
                        "ysrc": "katzicat:169:c656e5"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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": "2019-06-17T18:35:24.286348Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~brendan115/143.embed",
            "fid": "brendan115:143",
            "filename": "median_corr_heatmap",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/brendan115:143/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/brendan115:143/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/brendan115/143/8_4TLOFLB47LFEUYH2FAFOE7PHMQBA2J.png",
                "list-thumb": "https://api.plotly.com/v2/files/brendan115:143/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/brendan115:143",
                "plots": "https://api.plotly.com/v2/plots/brendan115:143",
                "parent": "https://api.plotly.com/v2/folders/home?user=brendan115"
            },
            "owner": "brendan115",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~brendan115/143/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:45:16.938Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~brendan115/143/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c0da73b4-2eaa-4473-9494-0f4af4f9db31",
                        "type": "heatmap",
                        "xsrc": "brendan115:144:51b273",
                        "ysrc": "brendan115:144:c69027",
                        "zsrc": "brendan115:144:1ce5d2,10113e,476b23,81a424,627508,859702"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "width": 850,
                    "xaxis": {
                        "side": "bottom"
                    },
                    "height": 700
                }
            },
            "height": 700,
            "width": 850,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~brendan115",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.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": "2018-01-25 17:57:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "brendan115",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}