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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE3KzEzJTNBMzglM0EyOC4wMTUwNTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNysxMyUzQTUxJTNBMzAuNjA4MTMwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-17T13:51:30.608130Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~klam09/35.embed",
            "fid": "klam09:35",
            "filename": "počet gólů za zemiUnnamed Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/klam09/35/9_XOUF21WSOQPGEU0E2YY8OTF363ZKRM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/klam09/35/2_62WUTA3CT16EW1O62EY6VX2GY4RXMI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/klam09/35/8_MHXNDDF30UKMMGB31VUC99609WS834.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/klam09/35/9_XOUF21WSOQPGEU0E2YY8OTF363ZKRM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/klam09:35",
                "plots": "https://api.plotly.com/v2/plots/klam09:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=klam09"
            },
            "owner": "klam09",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://plotly.com/~klam09/35/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:51:30.617Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~klam09/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Country",
                                "y": "Goals For",
                                "labels": "Country",
                                "values": "Played"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "klam09:34:a3dab8",
                        "ysrc": "klam09:34:aea330",
                        "labelssrc": "klam09:34:a3dab8",
                        "valuessrc": "klam09:34:4f6a73",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Počet gólů za zemi"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            53.5
                        ],
                        "title": {
                            "text": "Země"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            2606.315789473684
                        ],
                        "title": {
                            "text": "Počet gólů"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hiddenlabels": [
                        "Russia"
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~klam09",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.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": "2024-04-10 16:32:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "klam09",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:48:45.182215Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/87.embed",
            "fid": "resteves58:87",
            "filename": "Stocks Historical Returns",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/87/9_O41PLLMLFQ21P53SX9F0P2GH84D168.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/87/2_G87BXCF3X0EPQF4RJ3DFCTJRNCWFJT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/87/8_PH1GOIKTTH33I9AR1BJBDYPEYRFB42.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/87/9_O41PLLMLFQ21P53SX9F0P2GH84D168.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:87",
                "plots": "https://api.plotly.com/v2/plots/resteves58:87",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 19,
            "web_url": "https://plotly.com/~resteves58/87/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:53:51.565Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/87/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "DBRG",
                        "type": "histogram",
                        "xsrc": "resteves58:90:057708",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "GOOG",
                        "type": "histogram",
                        "xsrc": "resteves58:90:4aa22d",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(55, 128, 191, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "MCD",
                        "type": "histogram",
                        "xsrc": "resteves58:90:959ef0",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(50, 171, 96, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "MSFT",
                        "type": "histogram",
                        "xsrc": "resteves58:90:fd1464",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(128, 0, 128, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "NEE",
                        "type": "histogram",
                        "xsrc": "resteves58:90:041121",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(219, 64, 82, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "SBAC",
                        "type": "histogram",
                        "xsrc": "resteves58:90:61ae68",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(0, 128, 128, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    },
                    {
                        "name": "WMT",
                        "type": "histogram",
                        "xsrc": "resteves58:90:55619a",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 255, 51, 1.0)"
                        },
                        "nbinsx": 100,
                        "opacity": 0.8,
                        "histfunc": "count",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Stocks Historical Returns"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:47:59.264567Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~klam09/33.embed",
            "fid": "klam09:33",
            "filename": "Výhry na zemi",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/klam09/33/9_ED6U3KSNUBDV5768DN93PBDT1HCTHG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/klam09/33/2_IQU43KX7UNKR6VGX7475Q2V80DJXYZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/klam09/33/8_38FU1IIR1X6G1MK4DPEIN9A6PCYTL0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/klam09/33/9_ED6U3KSNUBDV5768DN93PBDT1HCTHG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/klam09:33",
                "plots": "https://api.plotly.com/v2/plots/klam09:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=klam09"
            },
            "owner": "klam09",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://plotly.com/~klam09/33/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:47:59.273Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~klam09/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Country",
                                "y": "Win",
                                "labels": "Win",
                                "values": "Country"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "klam09:32:0ad35e",
                        "ysrc": "klam09:32:a47c49",
                        "labelssrc": "klam09:32:a47c49",
                        "valuessrc": "klam09:32:0ad35e"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Počet výher za zemi"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            53
                        ],
                        "title": {
                            "text": "Země"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -38.777777777777786,
                            756.7777777777778
                        ],
                        "title": {
                            "text": "Výhry"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~klam09",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.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": "2024-04-10 16:32:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "klam09",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:43:53.197798Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~cha_ag/1.embed",
            "fid": "cha_ag:1",
            "filename": "r-docs-bp-ruk-all",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cha_ag/1/9_9X5ZEJ82T32KEZHU9CH4XZ9WV906HF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cha_ag/1/2_V22MRUYBKED14EWS56DNCO6ZSYLBUV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cha_ag/1/8_KL4BPAVK5V6UNX50M2URZFCEONWM14.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cha_ag/1/9_9X5ZEJ82T32KEZHU9CH4XZ9WV906HF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cha_ag:1",
                "plots": "https://api.plotly.com/v2/plots/cha_ag:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cha_ag"
            },
            "owner": "cha_ag",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://plotly.com/~cha_ag/1/",
            "world_readable": true,
            "date_modified": "2024-04-18T07:34:11.893Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~cha_ag/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "heatmap",
                        "xsrc": "cha_ag:2:6441de",
                        "ysrc": "cha_ag:2:a6ac6d",
                        "zsrc": "cha_ag:2:3f7c13",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "textsrc": "cha_ag:2:2e1ad3",
                        "hoverinfo": "text",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#482173"
                            ],
                            [
                                0.05882352941176449,
                                "#46307E"
                            ],
                            [
                                0.11764705882352951,
                                "#433E85"
                            ],
                            [
                                0.176470588235294,
                                "#3E4C8A"
                            ],
                            [
                                0.2352941176470585,
                                "#38598C"
                            ],
                            [
                                0.2941176470588235,
                                "#32648E"
                            ],
                            [
                                0.352941176470588,
                                "#2D708E"
                            ],
                            [
                                0.411764705882353,
                                "#297A8E"
                            ],
                            [
                                0.4705882352941175,
                                "#25858E"
                            ],
                            [
                                0.529411764705882,
                                "#21908D"
                            ],
                            [
                                0.588235294117647,
                                "#1E9B8A"
                            ],
                            [
                                0.6470588235294115,
                                "#21A685"
                            ],
                            [
                                0.7058823529411765,
                                "#2BB07F"
                            ],
                            [
                                0.764705882352941,
                                "#3BBB75"
                            ],
                            [
                                0.8235294117647055,
                                "#51C46A"
                            ],
                            [
                                0.8823529411764705,
                                "#69CD5B"
                            ],
                            [
                                0.941176470588235,
                                "#85D54A"
                            ],
                            [
                                1,
                                "#A3DA37"
                            ]
                        ],
                        "showlegend": false,
                        "autocolorscale": false
                    },
                    {
                        "type": "heatmap",
                        "xsrc": "cha_ag:2:febda2",
                        "ysrc": "cha_ag:2:795cb8",
                        "zsrc": "cha_ag:2:a30efd",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y",
                        "textsrc": "cha_ag:2:b636e6",
                        "hoverinfo": "text",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#482173"
                            ],
                            [
                                0.04999999999999982,
                                "#46307E"
                            ],
                            [
                                0.1499999999999999,
                                "#3E4C8A"
                            ],
                            [
                                0.19999999999999973,
                                "#38598C"
                            ],
                            [
                                0.25,
                                "#32648E"
                            ],
                            [
                                0.2999999999999998,
                                "#2D708E"
                            ],
                            [
                                0.3500000000000001,
                                "#297A8E"
                            ],
                            [
                                0.3999999999999999,
                                "#25858E"
                            ],
                            [
                                0.44999999999999973,
                                "#21908D"
                            ],
                            [
                                0.5,
                                "#1E9B8A"
                            ],
                            [
                                0.5499999999999998,
                                "#21A685"
                            ],
                            [
                                0.6000000000000001,
                                "#2BB07F"
                            ],
                            [
                                0.6499999999999999,
                                "#3BBB75"
                            ],
                            [
                                0.6999999999999997,
                                "#51C46A"
                            ],
                            [
                                0.75,
                                "#69CD5B"
                            ],
                            [
                                0.7999999999999998,
                                "#85D54A"
                            ],
                            [
                                0.8500000000000001,
                                "#A3DA37"
                            ],
                            [
                                0.8999999999999999,
                                "#C2DF23"
                            ],
                            [
                                0.9499999999999997,
                                "#E0E318"
                            ],
                            [
                                1,
                                "#FDE725"
                            ]
                        ],
                        "showlegend": false,
                        "autocolorscale": false
                    },
                    {
                        "type": "heatmap",
                        "xsrc": "cha_ag:2:bc9af5",
                        "ysrc": "cha_ag:2:cb2882",
                        "zsrc": "cha_ag:2:e3bda0",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y",
                        "textsrc": "cha_ag:2:3306cb",
                        "hoverinfo": "text",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.09523809523809534,
                                "#482173"
                            ],
                            [
                                0.1428571428571428,
                                "#46307E"
                            ],
                            [
                                0.1904761904761907,
                                "#433E85"
                            ],
                            [
                                0.23809523809523814,
                                "#3E4C8A"
                            ],
                            [
                                0.2857142857142856,
                                "#38598C"
                            ],
                            [
                                0.3333333333333335,
                                "#32648E"
                            ],
                            [
                                0.38095238095238093,
                                "#2D708E"
                            ],
                            [
                                0.4285714285714288,
                                "#297A8E"
                            ],
                            [
                                0.4761904761904763,
                                "#25858E"
                            ],
                            [
                                0.5238095238095237,
                                "#21908D"
                            ],
                            [
                                0.5714285714285716,
                                "#1E9B8A"
                            ],
                            [
                                0.6190476190476191,
                                "#21A685"
                            ],
                            [
                                0.666666666666667,
                                "#2BB07F"
                            ],
                            [
                                0.7142857142857144,
                                "#3BBB75"
                            ],
                            [
                                0.7619047619047619,
                                "#51C46A"
                            ],
                            [
                                0.9047619047619051,
                                "#A3DA37"
                            ],
                            [
                                0.9523809523809526,
                                "#C2DF23"
                            ],
                            [
                                1,
                                "#E0E318"
                            ]
                        ],
                        "showlegend": false,
                        "autocolorscale": false
                    },
                    {
                        "mode": "markers",
                        "name": "0f8dae7a5391c292d1470c13620dbad8",
                        "type": "scatter",
                        "xsrc": "cha_ag:2:b61b04",
                        "ysrc": "cha_ag:2:4bbbc8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "colorbar": {
                                "len": 0.5,
                                "title": "Стэны",
                                "bgcolor": null,
                                "ticklen": 2,
                                "tickfont": {
                                    "size": 11.68949771689498,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "tickmode": "array",
                                "thickness": 23.039999999999996,
                                "titlefont": {
                                    "size": 14.611872146118724,
                                    "color": "rgba(0,0,0,1)",
                                    "family": ""
                                },
                                "bordercolor": null,
                                "borderwidth": 0,
                                "ticktextsrc": "cha_ag:2:9007bf",
                                "tickvalssrc": "cha_ag:2:34e731"
                            },
                            "colorsrc": "cha_ag:2:5e55b0",
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.0033444816053512286,
                                    "#440256"
                                ],
                                [
                                    0.006688963210702457,
                                    "#450357"
                                ],
                                [
                                    0.010033444816053685,
                                    "#450558"
                                ],
                                [
                                    0.01337792642140451,
                                    "#450659"
                                ],
                                [
                                    0.01672240802675574,
                                    "#46075B"
                                ],
                                [
                                    0.02006688963210697,
                                    "#46085C"
                                ],
                                [
                                    0.023411371237458196,
                                    "#460A5D"
                                ],
                                [
                                    0.026755852842809427,
                                    "#460B5E"
                                ],
                                [
                                    0.030100334448160654,
                                    "#470C5F"
                                ],
                                [
                                    0.033444816053511885,
                                    "#470E61"
                                ],
                                [
                                    0.036789297658862706,
                                    "#470F62"
                                ],
                                [
                                    0.04013377926421394,
                                    "#471063"
                                ],
                                [
                                    0.04347826086956517,
                                    "#471164"
                                ],
                                [
                                    0.04682274247491639,
                                    "#471365"
                                ],
                                [
                                    0.05016722408026762,
                                    "#481467"
                                ],
                                [
                                    0.05351170568561885,
                                    "#481568"
                                ],
                                [
                                    0.05685618729097008,
                                    "#481768"
                                ],
                                [
                                    0.060200668896320905,
                                    "#481769"
                                ],
                                [
                                    0.06354515050167213,
                                    "#48186A"
                                ],
                                [
                                    0.06688963210702337,
                                    "#481A6C"
                                ],
                                [
                                    0.07023411371237459,
                                    "#481B6D"
                                ],
                                [
                                    0.07357859531772581,
                                    "#481C6E"
                                ],
                                [
                                    0.07692307692307705,
                                    "#481D6F"
                                ],
                                [
                                    0.08026755852842828,
                                    "#481E6F"
                                ],
                                [
                                    0.0836120401337791,
                                    "#481F70"
                                ],
                                [
                                    0.08695652173913034,
                                    "#482071"
                                ],
                                [
                                    0.09030100334448156,
                                    "#482173"
                                ],
                                [
                                    0.09364548494983278,
                                    "#482374"
                                ],
                                [
                                    0.09698996655518402,
                                    "#482475"
                                ],
                                [
                                    0.10033444816053524,
                                    "#482576"
                                ],
                                [
                                    0.10367892976588647,
                                    "#482576"
                                ],
                                [
                                    0.1070234113712373,
                                    "#482777"
                                ],
                                [
                                    0.11036789297658853,
                                    "#482878"
                                ],
                                [
                                    0.11371237458193975,
                                    "#482979"
                                ],
                                [
                                    0.11705685618729099,
                                    "#472A7A"
                                ],
                                [
                                    0.12040133779264221,
                                    "#472B7A"
                                ],
                                [
                                    0.12374581939799344,
                                    "#472D7B"
                                ],
                                [
                                    0.12709030100334467,
                                    "#472D7B"
                                ],
                                [
                                    0.13043478260869548,
                                    "#472E7C"
                                ],
                                [
                                    0.13377926421404673,
                                    "#472F7D"
                                ],
                                [
                                    0.13712374581939796,
                                    "#46307E"
                                ],
                                [
                                    0.14046822742474918,
                                    "#46327E"
                                ],
                                [
                                    0.1438127090301004,
                                    "#46337F"
                                ],
                                [
                                    0.14715719063545163,
                                    "#463480"
                                ],
                                [
                                    0.15050167224080285,
                                    "#463480"
                                ],
                                [
                                    0.1538461538461537,
                                    "#453581"
                                ],
                                [
                                    0.1571906354515049,
                                    "#453781"
                                ],
                                [
                                    0.16053511705685614,
                                    "#453882"
                                ],
                                [
                                    0.1638795986622074,
                                    "#443983"
                                ],
                                [
                                    0.1672240802675586,
                                    "#443A83"
                                ],
                                [
                                    0.17056856187290984,
                                    "#443A83"
                                ],
                                [
                                    0.17391304347826106,
                                    "#443C84"
                                ],
                                [
                                    0.1772575250836119,
                                    "#433D84"
                                ],
                                [
                                    0.18060200668896312,
                                    "#433E85"
                                ],
                                [
                                    0.18394648829431434,
                                    "#423F85"
                                ],
                                [
                                    0.18729096989966557,
                                    "#424086"
                                ],
                                [
                                    0.1906354515050168,
                                    "#424186"
                                ],
                                [
                                    0.19397993311036804,
                                    "#424186"
                                ],
                                [
                                    0.19732441471571927,
                                    "#414387"
                                ],
                                [
                                    0.20066889632107007,
                                    "#414487"
                                ],
                                [
                                    0.20401337792642132,
                                    "#404588"
                                ],
                                [
                                    0.20735785953177255,
                                    "#404688"
                                ],
                                [
                                    0.21070234113712377,
                                    "#3F4788"
                                ],
                                [
                                    0.214046822742475,
                                    "#3F4889"
                                ],
                                [
                                    0.21739130434782622,
                                    "#3F4889"
                                ],
                                [
                                    0.22073578595317705,
                                    "#3E4989"
                                ],
                                [
                                    0.22408026755852828,
                                    "#3E4A89"
                                ],
                                [
                                    0.2274247491638795,
                                    "#3E4C8A"
                                ],
                                [
                                    0.23076923076923073,
                                    "#3D4D8A"
                                ],
                                [
                                    0.23411371237458198,
                                    "#3D4E8A"
                                ],
                                [
                                    0.2374581939799332,
                                    "#3C4F8A"
                                ],
                                [
                                    0.24080267558528443,
                                    "#3C4F8A"
                                ],
                                [
                                    0.24414715719063565,
                                    "#3C508B"
                                ],
                                [
                                    0.24749163879598648,
                                    "#3B518B"
                                ],
                                [
                                    0.2508361204013377,
                                    "#3B528B"
                                ],
                                [
                                    0.25418060200668896,
                                    "#3A538B"
                                ],
                                [
                                    0.2575250836120402,
                                    "#3A548C"
                                ],
                                [
                                    0.2608695652173914,
                                    "#39558C"
                                ],
                                [
                                    0.26421404682274263,
                                    "#39558C"
                                ],
                                [
                                    0.26755852842809347,
                                    "#39568C"
                                ],
                                [
                                    0.2709030100334447,
                                    "#38588C"
                                ],
                                [
                                    0.2742474916387959,
                                    "#38598C"
                                ],
                                [
                                    0.27759197324414714,
                                    "#375A8C"
                                ],
                                [
                                    0.28093645484949836,
                                    "#375B8D"
                                ],
                                [
                                    0.2842809364548496,
                                    "#375B8D"
                                ],
                                [
                                    0.2876254180602008,
                                    "#365C8D"
                                ],
                                [
                                    0.29096989966555203,
                                    "#365D8D"
                                ],
                                [
                                    0.29431438127090287,
                                    "#355E8D"
                                ],
                                [
                                    0.2976588628762541,
                                    "#355F8D"
                                ],
                                [
                                    0.3010033444816053,
                                    "#34608D"
                                ],
                                [
                                    0.30434782608695654,
                                    "#34618D"
                                ],
                                [
                                    0.30769230769230776,
                                    "#34618D"
                                ],
                                [
                                    0.311036789297659,
                                    "#33628D"
                                ],
                                [
                                    0.3143812709030098,
                                    "#33638D"
                                ],
                                [
                                    0.31772575250836105,
                                    "#32648E"
                                ],
                                [
                                    0.32107023411371227,
                                    "#32658E"
                                ],
                                [
                                    0.32441471571906355,
                                    "#31668E"
                                ],
                                [
                                    0.3277591973244148,
                                    "#31678E"
                                ],
                                [
                                    0.331103678929766,
                                    "#31678E"
                                ],
                                [
                                    0.3344481605351172,
                                    "#31688E"
                                ],
                                [
                                    0.33779264214046845,
                                    "#30698E"
                                ],
                                [
                                    0.3411371237458193,
                                    "#306A8E"
                                ],
                                [
                                    0.3444816053511705,
                                    "#2F6B8E"
                                ],
                                [
                                    0.34782608695652173,
                                    "#2F6C8E"
                                ],
                                [
                                    0.35117056856187295,
                                    "#2E6D8E"
                                ],
                                [
                                    0.3545150501672242,
                                    "#2E6D8E"
                                ],
                                [
                                    0.3578595317725754,
                                    "#2E6E8E"
                                ],
                                [
                                    0.36120401337792624,
                                    "#2E6F8E"
                                ],
                                [
                                    0.36454849498327746,
                                    "#2D708E"
                                ],
                                [
                                    0.3678929765886287,
                                    "#2D718E"
                                ],
                                [
                                    0.3712374581939799,
                                    "#2C718E"
                                ],
                                [
                                    0.37458193979933113,
                                    "#2C728E"
                                ],
                                [
                                    0.37792642140468236,
                                    "#2C728E"
                                ],
                                [
                                    0.3812709030100336,
                                    "#2C738E"
                                ],
                                [
                                    0.38461538461538486,
                                    "#2B748E"
                                ],
                                [
                                    0.38795986622073564,
                                    "#2B758E"
                                ],
                                [
                                    0.39130434782608686,
                                    "#2A768E"
                                ],
                                [
                                    0.39464882943143814,
                                    "#2A778E"
                                ],
                                [
                                    0.39799331103678937,
                                    "#2A778E"
                                ],
                                [
                                    0.4013377926421406,
                                    "#2A788E"
                                ],
                                [
                                    0.4046822742474918,
                                    "#29798E"
                                ],
                                [
                                    0.40802675585284265,
                                    "#297A8E"
                                ],
                                [
                                    0.4113712374581939,
                                    "#297B8E"
                                ],
                                [
                                    0.4147157190635451,
                                    "#287C8E"
                                ],
                                [
                                    0.4180602006688963,
                                    "#287D8E"
                                ],
                                [
                                    0.42140468227424754,
                                    "#287D8E"
                                ],
                                [
                                    0.42474916387959877,
                                    "#277E8E"
                                ],
                                [
                                    0.42809364548495,
                                    "#277F8E"
                                ],
                                [
                                    0.4314381270903012,
                                    "#27808E"
                                ],
                                [
                                    0.43478260869565205,
                                    "#26818E"
                                ],
                                [
                                    0.4381270903010033,
                                    "#26828E"
                                ],
                                [
                                    0.4414715719063545,
                                    "#26828E"
                                ],
                                [
                                    0.4448160535117057,
                                    "#26828E"
                                ],
                                [
                                    0.44816053511705695,
                                    "#25838E"
                                ],
                                [
                                    0.45150501672240817,
                                    "#25848E"
                                ],
                                [
                                    0.454849498327759,
                                    "#25858E"
                                ],
                                [
                                    0.45819397993311023,
                                    "#24868E"
                                ],
                                [
                                    0.46153846153846145,
                                    "#24878E"
                                ],
                                [
                                    0.46488294314381273,
                                    "#23888E"
                                ],
                                [
                                    0.46822742474916396,
                                    "#23888E"
                                ],
                                [
                                    0.4715719063545152,
                                    "#23898E"
                                ],
                                [
                                    0.4749163879598664,
                                    "#238A8D"
                                ],
                                [
                                    0.47826086956521763,
                                    "#228B8D"
                                ],
                                [
                                    0.48160535117056846,
                                    "#228C8D"
                                ],
                                [
                                    0.4849498327759197,
                                    "#228D8D"
                                ],
                                [
                                    0.4882943143812709,
                                    "#218E8D"
                                ],
                                [
                                    0.49163879598662213,
                                    "#218E8D"
                                ],
                                [
                                    0.49498327759197336,
                                    "#218F8D"
                                ],
                                [
                                    0.4983277591973242,
                                    "#21908D"
                                ],
                                [
                                    0.5016722408026754,
                                    "#21918C"
                                ],
                                [
                                    0.5050167224080266,
                                    "#20928C"
                                ],
                                [
                                    0.5083612040133779,
                                    "#20928C"
                                ],
                                [
                                    0.5117056856187291,
                                    "#20928C"
                                ],
                                [
                                    0.5150501672240804,
                                    "#20938C"
                                ],
                                [
                                    0.5183946488294315,
                                    "#1F948C"
                                ],
                                [
                                    0.5217391304347828,
                                    "#1F958B"
                                ],
                                [
                                    0.525083612040134,
                                    "#1F968B"
                                ],
                                [
                                    0.5284280936454848,
                                    "#1F978B"
                                ],
                                [
                                    0.5317725752508361,
                                    "#1F988B"
                                ],
                                [
                                    0.5351170568561873,
                                    "#1F988B"
                                ],
                                [
                                    0.5384615384615385,
                                    "#1F998A"
                                ],
                                [
                                    0.5418060200668897,
                                    "#1F9A8A"
                                ],
                                [
                                    0.5451505016722406,
                                    "#1E9B8A"
                                ],
                                [
                                    0.5484949832775918,
                                    "#1E9C89"
                                ],
                                [
                                    0.551839464882943,
                                    "#1E9D89"
                                ],
                                [
                                    0.5551839464882943,
                                    "#1F9E89"
                                ],
                                [
                                    0.5585284280936454,
                                    "#1F9E89"
                                ],
                                [
                                    0.5618729096989967,
                                    "#1F9F88"
                                ],
                                [
                                    0.5652173913043479,
                                    "#1FA088"
                                ],
                                [
                                    0.5685618729096992,
                                    "#1FA188"
                                ],
                                [
                                    0.5719063545150505,
                                    "#1FA187"
                                ],
                                [
                                    0.5752508361204012,
                                    "#1FA287"
                                ],
                                [
                                    0.5785953177257525,
                                    "#20A386"
                                ],
                                [
                                    0.5819397993311037,
                                    "#20A386"
                                ],
                                [
                                    0.5852842809364549,
                                    "#20A486"
                                ],
                                [
                                    0.5886287625418062,
                                    "#21A585"
                                ],
                                [
                                    0.591973244147157,
                                    "#21A685"
                                ],
                                [
                                    0.5953177257525082,
                                    "#22A785"
                                ],
                                [
                                    0.5986622073578595,
                                    "#22A884"
                                ],
                                [
                                    0.6020066889632106,
                                    "#23A983"
                                ],
                                [
                                    0.6053511705685619,
                                    "#23A983"
                                ],
                                [
                                    0.6086956521739131,
                                    "#24AA83"
                                ],
                                [
                                    0.6120401337792644,
                                    "#25AB82"
                                ],
                                [
                                    0.6153846153846155,
                                    "#25AC82"
                                ],
                                [
                                    0.6187290969899668,
                                    "#26AD81"
                                ],
                                [
                                    0.6220735785953176,
                                    "#27AD81"
                                ],
                                [
                                    0.6254180602006688,
                                    "#27AD81"
                                ],
                                [
                                    0.6287625418060201,
                                    "#28AE80"
                                ],
                                [
                                    0.6321070234113713,
                                    "#29AF7F"
                                ],
                                [
                                    0.6354515050167225,
                                    "#2AB07F"
                                ],
                                [
                                    0.6387959866220734,
                                    "#2CB17E"
                                ],
                                [
                                    0.6421404682274245,
                                    "#2DB27D"
                                ],
                                [
                                    0.6454849498327758,
                                    "#2EB37C"
                                ],
                                [
                                    0.6488294314381271,
                                    "#2EB37C"
                                ],
                                [
                                    0.6521739130434783,
                                    "#30B47C"
                                ],
                                [
                                    0.6555183946488295,
                                    "#31B57B"
                                ],
                                [
                                    0.6588628762541807,
                                    "#32B67A"
                                ],
                                [
                                    0.662207357859532,
                                    "#34B679"
                                ],
                                [
                                    0.6655518394648832,
                                    "#35B779"
                                ],
                                [
                                    0.668896321070234,
                                    "#36B878"
                                ],
                                [
                                    0.6722408026755853,
                                    "#37B878"
                                ],
                                [
                                    0.6755852842809364,
                                    "#39B977"
                                ],
                                [
                                    0.6789297658862877,
                                    "#3ABA76"
                                ],
                                [
                                    0.6822742474916389,
                                    "#3BBB75"
                                ],
                                [
                                    0.6856187290969897,
                                    "#3DBC74"
                                ],
                                [
                                    0.688963210702341,
                                    "#3EBC73"
                                ],
                                [
                                    0.6923076923076922,
                                    "#40BD72"
                                ],
                                [
                                    0.6956521739130435,
                                    "#41BD72"
                                ],
                                [
                                    0.6989966555183946,
                                    "#42BE71"
                                ],
                                [
                                    0.7023411371237459,
                                    "#44BF70"
                                ],
                                [
                                    0.7056856187290971,
                                    "#46C06F"
                                ],
                                [
                                    0.7090301003344484,
                                    "#48C16E"
                                ],
                                [
                                    0.7123745819397996,
                                    "#49C16D"
                                ],
                                [
                                    0.7157190635451504,
                                    "#4BC26C"
                                ],
                                [
                                    0.7190635451505016,
                                    "#4DC26C"
                                ],
                                [
                                    0.7224080267558529,
                                    "#4EC36B"
                                ],
                                [
                                    0.7257525083612041,
                                    "#50C46A"
                                ],
                                [
                                    0.7290969899665554,
                                    "#52C569"
                                ],
                                [
                                    0.7324414715719062,
                                    "#54C568"
                                ],
                                [
                                    0.7357859531772574,
                                    "#55C667"
                                ],
                                [
                                    0.7391304347826086,
                                    "#57C666"
                                ],
                                [
                                    0.7424749163879598,
                                    "#59C765"
                                ],
                                [
                                    0.7458193979933111,
                                    "#5AC864"
                                ],
                                [
                                    0.7491638795986623,
                                    "#5CC863"
                                ],
                                [
                                    0.7525083612040135,
                                    "#5EC962"
                                ],
                                [
                                    0.7558528428093647,
                                    "#5FCA61"
                                ],
                                [
                                    0.759197324414716,
                                    "#62CB5F"
                                ],
                                [
                                    0.7625418060200668,
                                    "#64CB5F"
                                ],
                                [
                                    0.765886287625418,
                                    "#66CB5D"
                                ],
                                [
                                    0.7692307692307693,
                                    "#67CC5C"
                                ],
                                [
                                    0.7725752508361204,
                                    "#69CD5B"
                                ],
                                [
                                    0.7759197324414717,
                                    "#6CCD5A"
                                ],
                                [
                                    0.7792642140468226,
                                    "#6DCE59"
                                ],
                                [
                                    0.7826086956521737,
                                    "#6FCF57"
                                ],
                                [
                                    0.785953177257525,
                                    "#71CF57"
                                ],
                                [
                                    0.7892976588628763,
                                    "#74D055"
                                ],
                                [
                                    0.7926421404682275,
                                    "#75D054"
                                ],
                                [
                                    0.7959866220735787,
                                    "#77D153"
                                ],
                                [
                                    0.7993311036789299,
                                    "#79D151"
                                ],
                                [
                                    0.8026755852842812,
                                    "#7BD250"
                                ],
                                [
                                    0.8060200668896323,
                                    "#7ED34F"
                                ],
                                [
                                    0.8093645484949832,
                                    "#80D34E"
                                ],
                                [
                                    0.8127090301003345,
                                    "#82D34D"
                                ],
                                [
                                    0.8160535117056856,
                                    "#84D44B"
                                ],
                                [
                                    0.8193979933110369,
                                    "#86D549"
                                ],
                                [
                                    0.8227424749163881,
                                    "#88D548"
                                ],
                                [
                                    0.8260869565217389,
                                    "#8AD647"
                                ],
                                [
                                    0.8294314381270902,
                                    "#8DD645"
                                ],
                                [
                                    0.8327759197324414,
                                    "#8FD644"
                                ],
                                [
                                    0.8361204013377926,
                                    "#91D743"
                                ],
                                [
                                    0.8394648829431438,
                                    "#93D741"
                                ],
                                [
                                    0.8428093645484951,
                                    "#95D840"
                                ],
                                [
                                    0.8461538461538463,
                                    "#97D83E"
                                ],
                                [
                                    0.8494983277591975,
                                    "#9AD93D"
                                ],
                                [
                                    0.8528428093645488,
                                    "#9CD93C"
                                ],
                                [
                                    0.8561872909698995,
                                    "#9ED93A"
                                ],
                                [
                                    0.8595317725752508,
                                    "#A0DA39"
                                ],
                                [
                                    0.8628762541806021,
                                    "#A2DA37"
                                ],
                                [
                                    0.8662207357859533,
                                    "#A5DB36"
                                ],
                                [
                                    0.8695652173913045,
                                    "#A7DB35"
                                ],
                                [
                                    0.8729096989966554,
                                    "#A9DC33"
                                ],
                                [
                                    0.8762541806020065,
                                    "#ABDC31"
                                ],
                                [
                                    0.8795986622073578,
                                    "#AEDC30"
                                ],
                                [
                                    0.882943143812709,
                                    "#B0DD2F"
                                ],
                                [
                                    0.8862876254180603,
                                    "#B2DD2D"
                                ],
                                [
                                    0.8896321070234114,
                                    "#B5DE2B"
                                ],
                                [
                                    0.8929765886287627,
                                    "#B7DE2A"
                                ],
                                [
                                    0.8963210702341139,
                                    "#B9DE28"
                                ],
                                [
                                    0.8996655518394652,
                                    "#BBDE27"
                                ],
                                [
                                    0.903010033444816,
                                    "#BEDF26"
                                ],
                                [
                                    0.9063545150501672,
                                    "#C0DF25"
                                ],
                                [
                                    0.9096989966555185,
                                    "#C2DF23"
                                ],
                                [
                                    0.9130434782608696,
                                    "#C4E021"
                                ],
                                [
                                    0.9163879598662205,
                                    "#C7E020"
                                ],
                                [
                                    0.9197324414715717,
                                    "#C9E11F"
                                ],
                                [
                                    0.9230769230769229,
                                    "#CBE11E"
                                ],
                                [
                                    0.9264214046822742,
                                    "#CEE11D"
                                ],
                                [
                                    0.9297658862876255,
                                    "#D0E11C"
                                ],
                                [
                                    0.9331103678929766,
                                    "#D2E21B"
                                ],
                                [
                                    0.9364548494983279,
                                    "#D4E21A"
                                ],
                                [
                                    0.9397993311036791,
                                    "#D7E219"
                                ],
                                [
                                    0.9431438127090304,
                                    "#D9E319"
                                ],
                                [
                                    0.9464882943143815,
                                    "#DBE319"
                                ],
                                [
                                    0.9498327759197324,
                                    "#DDE318"
                                ],
                                [
                                    0.9531772575250836,
                                    "#DFE318"
                                ],
                                [
                                    0.9565217391304348,
                                    "#E2E418"
                                ],
                                [
                                    0.9598662207357861,
                                    "#E4E419"
                                ],
                                [
                                    0.9632107023411369,
                                    "#E6E419"
                                ],
                                [
                                    0.9665551839464881,
                                    "#E8E419"
                                ],
                                [
                                    0.9698996655518394,
                                    "#EBE51A"
                                ],
                                [
                                    0.9732441471571905,
                                    "#EDE51B"
                                ],
                                [
                                    0.9765886287625418,
                                    "#EFE51C"
                                ],
                                [
                                    0.979933110367893,
                                    "#F1E51D"
                                ],
                                [
                                    0.9832775919732443,
                                    "#F3E61E"
                                ],
                                [
                                    0.9866220735785954,
                                    "#F5E61F"
                                ],
                                [
                                    0.9899665551839467,
                                    "#F7E620"
                                ],
                                [
                                    0.993311036789298,
                                    "#F9E622"
                                ],
                                [
                                    0.9966555183946487,
                                    "#FBE723"
                                ],
                                [
                                    1,
                                    "#FDE725"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "skip",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.534246575342465,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Бизнес-Профиль, руководители из разных сфер",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            13.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            0.325847743094543
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Вн. мотивация",
                            "Интерес",
                            "Творчество",
                            "Помощь людям",
                            "Служение обществу",
                            "Общение",
                            "Вкл. в команду",
                            "Признание",
                            "Руководство",
                            "Деньги",
                            "Связи",
                            "Здоровье",
                            "Традиции"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Вн. мотивация",
                            "Интерес",
                            "Творчество",
                            "Помощь людям",
                            "Служение обществу",
                            "Общение",
                            "Вкл. в команду",
                            "Признание",
                            "Руководство",
                            "Деньги",
                            "Связи",
                            "Здоровье",
                            "Традиции"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            14.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Юриспруденция",
                            "ТЭК",
                            "Транспорт",
                            "Торговля",
                            "Сфера услуг",
                            "Строительство/Недвижимость",
                            "Склад/логистика/ВЭД",
                            "Реклама/PR/Маркетинг",
                            "Производство",
                            "Медицина/Фармацевтика",
                            "Кадры",
                            "Бухгалтерия/банки",
                            "Административная работа",
                            "IT_технологии/Internet"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            3.9999999999999996,
                            5,
                            6,
                            7,
                            7.999999999999999,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Юриспруденция",
                            "ТЭК",
                            "Транспорт",
                            "Торговля",
                            "Сфера услуг",
                            "Строительство/Недвижимость",
                            "Склад/логистика/ВЭД",
                            "Реклама/PR/Маркетинг",
                            "Производство",
                            "Медицина/Фармацевтика",
                            "Кадры",
                            "Бухгалтерия/банки",
                            "Административная работа",
                            "IT_технологии/Internet"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Стэны"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 67.3741364566692,
                        "l": 162.9223744292238,
                        "r": 7.305936073059362,
                        "t": 60.639283272280096
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.325847743094543,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.325847743094543,
                            "y0": 0,
                            "y1": 27.629721876297225,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.3408189235721236,
                            "x1": 0.6591810764278763,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.3408189235721236,
                            "x1": 0.6591810764278763,
                            "y0": 0,
                            "y1": 27.629721876297225,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.674152256905457,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.674152256905457,
                            "x1": 1,
                            "y0": 0,
                            "y1": 27.629721876297225,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        }
                    ],
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            0.4,
                            8.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0.3408189235721236,
                            0.6591810764278763
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Вычисления",
                            "Лексика",
                            "Эрудиция",
                            "Пр. мышление",
                            "Неверб. логика",
                            "Верб. логика",
                            "Обр. информации",
                            "Общ. балл интеллекта"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Вычисления",
                            "Лексика",
                            "Эрудиция",
                            "Пр. мышление",
                            "Неверб. логика",
                            "Верб. логика",
                            "Обр. информации",
                            "Общ. балл интеллекта"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "type": "linear",
                        "range": [
                            0.4,
                            11.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0.674152256905457,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Замкнутость - Общительность",
                            "Пассивность - Активность",
                            "Недоверчивость - Дружелюбие",
                            "Независимость - Конформизм",
                            "Мор. гибкость - Моральность",
                            "Импульсивность - Организованность",
                            "Тревожность - Уравновешенность",
                            "Сензитивность - Нечувствительность",
                            "Инт. сдержанность - Любознательность",
                            "Традиционность - Оригинальность",
                            "Конкретность - Абстрактность"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Замкнутость - Общительность",
                            "Пассивность - Активность",
                            "Недоверчивость - Дружелюбие",
                            "Независимость - Конформизм",
                            "Мор. гибкость - Моральность",
                            "Импульсивность - Организованность",
                            "Тревожность - Уравновешенность",
                            "Сензитивность - Нечувствительность",
                            "Инт. сдержанность - Любознательность",
                            "Традиционность - Оригинальность",
                            "Конкретность - Абстрактность"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.1629238715472715,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 15.940224159402243,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Мотивация",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.49999999999999994,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 15.940224159402243,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Интеллект",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.8370761284527285,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 15.940224159402243,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Личность",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~cha_ag",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 13:36:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cha_ag",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:41:53.343347Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/85.embed",
            "fid": "resteves58:85",
            "filename": "Normalized Stocks Historgram",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/85/9_KQPGM90RVJLV1ANOKL41C4E4YMZ066.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/85/2_ALJ6JWASI75N06EH68HO4G46E2I8C4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/85/8_WBIYUZUGJ1XSARDDWOL6T0W16CV42B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/85/9_KQPGM90RVJLV1ANOKL41C4E4YMZ066.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:85",
                "plots": "https://api.plotly.com/v2/plots/resteves58:85",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://plotly.com/~resteves58/85/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:41:53.355Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/85/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "DBRG",
                        "type": "histogram",
                        "xsrc": "resteves58:84:6c9664",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "GOOG",
                        "type": "histogram",
                        "xsrc": "resteves58:84:6f6062",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(55, 128, 191, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MCD",
                        "type": "histogram",
                        "xsrc": "resteves58:84:863a01",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(50, 171, 96, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MSFT",
                        "type": "histogram",
                        "xsrc": "resteves58:84:a25316",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(128, 0, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "NEE",
                        "type": "histogram",
                        "xsrc": "resteves58:84:3fd439",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(219, 64, 82, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "SBAC",
                        "type": "histogram",
                        "xsrc": "resteves58:84:65a2c2",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(0, 128, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "WMT",
                        "type": "histogram",
                        "xsrc": "resteves58:84:13697d",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 255, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Normalized Stocks Historgram"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:40:20.188611Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/83.embed",
            "fid": "resteves58:83",
            "filename": "Stocks Historgram",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/83/9_PYW2GXSAXXQF78P4JP8W6ASE11XGYL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/83/2_Q03AMU3SYVXRG62JE5M0PBF2GH40KM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/83/8_6R6RWAOIJZ1G4LQSDZJ5L0MZ63GVD1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/83/9_PYW2GXSAXXQF78P4JP8W6ASE11XGYL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:83",
                "plots": "https://api.plotly.com/v2/plots/resteves58:83",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 17,
            "web_url": "https://plotly.com/~resteves58/83/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:40:20.200Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/83/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "DBRG",
                        "type": "histogram",
                        "xsrc": "resteves58:82:258b7c",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "GOOG",
                        "type": "histogram",
                        "xsrc": "resteves58:82:726739",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(55, 128, 191, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MCD",
                        "type": "histogram",
                        "xsrc": "resteves58:82:be47d7",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(50, 171, 96, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MSFT",
                        "type": "histogram",
                        "xsrc": "resteves58:82:2da38c",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(128, 0, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "NEE",
                        "type": "histogram",
                        "xsrc": "resteves58:82:05a98d",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(219, 64, 82, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "SBAC",
                        "type": "histogram",
                        "xsrc": "resteves58:82:3e64f0",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(0, 128, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "WMT",
                        "type": "histogram",
                        "xsrc": "resteves58:82:defeab",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 255, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Stocks Historgram"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:40:07.605697Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~GianlucaVegas/8.embed",
            "fid": "GianlucaVegas:8",
            "filename": "Plot 8",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/GianlucaVegas/8/9_70P1BA0QFZJUI18EMM5FG1XOCSMVE2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/GianlucaVegas/8/2_UFKX6RHOKQLWABKSGUEKGF3UM0P7F5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/GianlucaVegas/8/8_7HNHC4BYUXZ3AP6LSYOWCMOXXFOCJY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/GianlucaVegas/8/9_70P1BA0QFZJUI18EMM5FG1XOCSMVE2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/GianlucaVegas:8",
                "plots": "https://api.plotly.com/v2/plots/GianlucaVegas:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=GianlucaVegas"
            },
            "owner": "GianlucaVegas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://plotly.com/~GianlucaVegas/8/",
            "world_readable": true,
            "date_modified": "2024-04-17T19:33:20.423Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~GianlucaVegas/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "East Asia & Pacific",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:dca292",
                        "visible": true,
                        "hoverlabel": {
                            "align": "auto"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(235, 42, 9)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Europe & Central Asia",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:cb7a43",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Latin America & Caribbean",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:1d8f9b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Middle East & North Africa",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:6e07ab",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "North America",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:fed068",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(228, 102, 167)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "South Asia",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:7b0da2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "Sub-Saharan Africa",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:6eaba5",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(23, 22, 21)",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "I"
                            }
                        },
                        "mode": "lines",
                        "name": "World",
                        "type": "scatter",
                        "xsrc": "GianlucaVegas:4:60397d",
                        "ysrc": "GianlucaVegas:4:8deba8",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1990,
                            2016
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.783592310555556,
                            90.88825390055557
                        ],
                        "title": {
                            "text": "Individui che utilizzano internet % della popolazione"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.032376226127292365,
                        "y": 1.024197478537695,
                        "font": {
                            "size": 14,
                            "family": "Droid Serif"
                        },
                        "borderwidth": 0
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~GianlucaVegas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/12.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 13:16:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "GianlucaVegas",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:39:51.955650Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/81.embed",
            "fid": "resteves58:81",
            "filename": "Plotly Playground 2024-04-17 09:39:39",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/81/9_C3S8UMLEJFDJEOEX5G7YXRRKDAG0W2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/81/2_AWOSB36BPGU2WU6SN5ADS30VJCPD0G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/81/8_530R84AMN2UAS0PQNTNBC7M6I9M5ND.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/81/9_C3S8UMLEJFDJEOEX5G7YXRRKDAG0W2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:81",
                "plots": "https://api.plotly.com/v2/plots/resteves58:81",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://plotly.com/~resteves58/81/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:39:51.968Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/81/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "DBRG",
                        "type": "histogram",
                        "xsrc": "resteves58:80:5b5d08",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "GOOG",
                        "type": "histogram",
                        "xsrc": "resteves58:80:c7a113",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(55, 128, 191, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MCD",
                        "type": "histogram",
                        "xsrc": "resteves58:80:bafc54",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(50, 171, 96, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "MSFT",
                        "type": "histogram",
                        "xsrc": "resteves58:80:7de959",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(128, 0, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "NEE",
                        "type": "histogram",
                        "xsrc": "resteves58:80:ca2a91",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(219, 64, 82, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "SBAC",
                        "type": "histogram",
                        "xsrc": "resteves58:80:513647",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(0, 128, 128, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    },
                    {
                        "name": "WMT",
                        "type": "histogram",
                        "xsrc": "resteves58:80:fcbf23",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 255, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:39:34.750320Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/78.embed",
            "fid": "resteves58:78",
            "filename": "Plotly Playground 2024-04-17 09:39:22",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/78/9_AHTKWOGSK8ZT3N4AV91NCE0US5TJ3N.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/78/2_4T3C8HFG5MKLMQJEGBUNGUXAXW07IQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/78/8_EKEI10PV18TRLKHEXBLQYZTK3IWOKR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/78/9_AHTKWOGSK8ZT3N4AV91NCE0US5TJ3N.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:78",
                "plots": "https://api.plotly.com/v2/plots/resteves58:78",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://plotly.com/~resteves58/78/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:39:34.762Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/78/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "SBAC",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:77:34558b",
                        "ysrc": "resteves58:77:452f39"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "DBRG",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:77:bc04b5",
                        "ysrc": "resteves58:77:f166ae"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "green",
                            "shape": "linear",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "Spread",
                        "type": "scatter",
                        "xsrc": "resteves58:77:884d5e",
                        "ysrc": "resteves58:77:a532d9",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "connectgaps": false
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "red",
                            "shape": "linear",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "Spread",
                        "type": "scatter",
                        "xsrc": "resteves58:77:b75734",
                        "ysrc": "resteves58:77:ee763f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "connectgaps": false
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "domain": [
                            0.3,
                            1
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "xaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y2",
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED",
                        "showticklabels": false
                    },
                    "yaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": "Spread"
                        },
                        "domain": [
                            0,
                            0.25
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x",
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T13:38:28.015051Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~resteves58/70.embed",
            "fid": "resteves58:70",
            "filename": "Plotly Playground 2024-04-17 09:38:15",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/resteves58/70/9_96ZMRKT6KM7IF74TLO53Q7ISJV5BXY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/resteves58/70/2_0WWIOAYZ4LQQN3I3NCYDXFES0NBQFM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/70/8_NVM5M1CIOYHB0X98GN4MP65WA4Y3ZA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/resteves58/70/9_96ZMRKT6KM7IF74TLO53Q7ISJV5BXY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/resteves58:70",
                "plots": "https://api.plotly.com/v2/plots/resteves58:70",
                "parent": "https://api.plotly.com/v2/folders/home?user=resteves58"
            },
            "owner": "resteves58",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://plotly.com/~resteves58/70/",
            "world_readable": true,
            "date_modified": "2024-04-17T13:38:28.024Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~resteves58/70/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "DBRG",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:1879a1",
                        "ysrc": "resteves58:69:0b4f5f"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "GOOG",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:1bd71c",
                        "ysrc": "resteves58:69:bb298c"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "MCD",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:44a8d7",
                        "ysrc": "resteves58:69:ff5da6"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "MSFT",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:6f30b1",
                        "ysrc": "resteves58:69:976d3a"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NEE",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:bd6ca7",
                        "ysrc": "resteves58:69:653436"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "SBAC",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:0f83d1",
                        "ysrc": "resteves58:69:6f8166"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "WMT",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "resteves58:69:3d8f4a",
                        "ysrc": "resteves58:69:93d51a"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~resteves58",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-16 16:49:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "resteves58",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}