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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA4KzA4JTNBMjIlM0ExNi4xODMyMDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wOCsxMCUzQTI3JTNBMDUuOTE3MTI1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-08T10:27:05.917125Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Luscombebmx/13.embed",
            "fid": "Luscombebmx:13",
            "filename": "Magnetic Field of Bar Magnet 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/13/9_8W7LESZNVCW6Z7XNU6ICZMM2LT5SMB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/13/2_4QE7P6JXETMJ5PIJHVNCXQ691VCF52.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/13/8_MH0D3XG1BBUTN8BT7OW1W9JW8ZHACI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/13/9_8W7LESZNVCW6Z7XNU6ICZMM2LT5SMB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Luscombebmx:13",
                "plots": "https://api.plotly.com/v2/plots/Luscombebmx:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=Luscombebmx"
            },
            "owner": "Luscombebmx",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Luscombebmx/13/",
            "world_readable": true,
            "date_modified": "2024-04-08T10:27:05.926Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Luscombebmx/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Luscombebmx:12:7a47da",
                        "ysrc": "Luscombebmx:12:0dab54"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Magnetic Field of Bar Magnet "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.20103485009892008,
                            7.175286388556655
                        ],
                        "title": {
                            "text": "Distance (cm)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.5086809815950923,
                            4.729082421979195
                        ],
                        "title": {
                            "text": "B [G] (Up-Down)"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Luscombebmx",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-04 09:03:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Luscombebmx",
                "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-08T10:27:03.317870Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sani21ip21/33.embed",
            "fid": "sani21ip21:33",
            "filename": "Interface_152_Flow_new-meterial correct",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sani21ip21/33/9_1LN2IZ08F0LFFEZ1I4YB30ELTR4EVS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sani21ip21/33/2_6AVTRZQBKSOM8C4MKE0M7XE0DR4LH4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sani21ip21/33/8_EVLLUEIHTJUNEJ1WGRBQGCXRKB96JX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sani21ip21/33/9_1LN2IZ08F0LFFEZ1I4YB30ELTR4EVS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sani21ip21:33",
                "plots": "https://api.plotly.com/v2/plots/sani21ip21:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=sani21ip21"
            },
            "owner": "sani21ip21",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~sani21ip21/33/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:48:38.271Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sani21ip21/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "up",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:95d3db",
                        "ysrc": "sani21ip21:32:bf59e5",
                        "visible": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(99, 110, 250)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "up_old",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:d271f2",
                        "ysrc": "sani21ip21:32:f2983d",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Y",
                                "y": "Z"
                            }
                        },
                        "mode": "markers",
                        "name": "up_exp",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:0fc45f",
                        "ysrc": "sani21ip21:32:bcadf8",
                        "marker": {
                            "size": 9,
                            "color": "rgb(82, 105, 254)"
                        },
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(250, 114, 99)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "center",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:95d3db",
                        "ysrc": "sani21ip21:32:1aed19",
                        "visible": true,
                        "stackgroup": null,
                        "connectgaps": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(239, 85, 59)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "center_old",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:d271f2",
                        "ysrc": "sani21ip21:32:754274",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W"
                            }
                        },
                        "mode": "markers",
                        "name": "center_exp",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:965991",
                        "ysrc": "sani21ip21:32:478af5",
                        "marker": {
                            "size": 9,
                            "color": "rgb(254, 88, 82)"
                        },
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(81, 214, 89)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "down",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:95d3db",
                        "ysrc": "sani21ip21:32:3afac5",
                        "visible": true,
                        "stackgroup": null,
                        "connectgaps": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(0, 204, 150)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "I"
                            }
                        },
                        "mode": "lines",
                        "name": "down_old",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:d271f2",
                        "ysrc": "sani21ip21:32:3658bd",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T"
                            }
                        },
                        "mode": "markers",
                        "name": "down_exp",
                        "type": "scatter",
                        "xsrc": "sani21ip21:32:14c4fc",
                        "ysrc": "sani21ip21:32:dcf326",
                        "marker": {
                            "size": 9,
                            "color": "rgb(75, 219, 66)"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -9.533071615512728,
                            164.53307161551274
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "x"
                        },
                        "nticks": 0,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true,
                        "exponentformat": "none"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            242.95924754975212,
                            319.7942965547095
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "y"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "size": 23
                        }
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sani21ip21",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-12-27 17:14:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sani21ip21",
                "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-08T10:22:06.176962Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Luscombebmx/11.embed",
            "fid": "Luscombebmx:11",
            "filename": "Magnetic field of  bar magnet",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/11/9_5M6EF9QJMVRUQX73PR5P8IOL17D223.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/11/2_6GBXA1FAJB23EDB6CLORYCMBYX9ILQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/11/8_8NNRV8ON32YOI2LV5WHJ7U1MFROEXL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Luscombebmx/11/9_5M6EF9QJMVRUQX73PR5P8IOL17D223.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Luscombebmx:11",
                "plots": "https://api.plotly.com/v2/plots/Luscombebmx:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=Luscombebmx"
            },
            "owner": "Luscombebmx",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~Luscombebmx/11/",
            "world_readable": true,
            "date_modified": "2024-04-08T10:22:06.187Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Luscombebmx/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Luscombebmx:10:3d08ce",
                        "ysrc": "Luscombebmx:10:0df02f"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Magnetic Field of a Bar Magnet"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.6239754098360655,
                            7.376024590163935
                        ],
                        "title": {
                            "text": "Distance (cm)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -27.861963190184046,
                            315.36196319018404
                        ],
                        "title": {
                            "text": "B (North-South axis) [G]"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Luscombebmx",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-04 09:03:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Luscombebmx",
                "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-08T10:08:14.191056Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jenniio/2.embed",
            "fid": "jenniio:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jenniio/2/9_IL1UNLKGO1875MW01Y4YN3D819M0UJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jenniio/2/2_L7BYCY8I4XFT1GZU41Z1G5EVP5NUG8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jenniio/2/8_R7BLP7B414AQSMR3R8TAJM6WQJAX2G.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jenniio/2/9_IL1UNLKGO1875MW01Y4YN3D819M0UJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jenniio:2",
                "plots": "https://api.plotly.com/v2/plots/jenniio:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=jenniio"
            },
            "owner": "jenniio",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jenniio/2/",
            "world_readable": true,
            "date_modified": "2024-04-08T10:08:14.201Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jenniio/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "manufacture & installation",
                        "type": "bar",
                        "xsrc": "jenniio:0:0b3b82",
                        "ysrc": "jenniio:0:1aa10d",
                        "marker": {
                            "color": "#66c2a5"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "showlegend": true,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "name": "operation",
                        "type": "bar",
                        "xsrc": "jenniio:0:ccc1a9",
                        "ysrc": "jenniio:0:1aa10d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#fc8d62"
                        },
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "A"
                            }
                        },
                        "name": "land use",
                        "type": "bar",
                        "xsrc": "jenniio:0:bef511",
                        "ysrc": "jenniio:0:1aa10d",
                        "marker": {
                            "color": "#8da0cb"
                        },
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "name": "manufacture extra",
                        "type": "bar",
                        "xsrc": "jenniio:0:49dac3",
                        "ysrc": "jenniio:0:1aa10d",
                        "marker": {
                            "color": "rgb(102, 194, 165)",
                            "opacity": 0.55
                        },
                        "showlegend": false,
                        "stackgroup": null,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "name": "operation extra",
                        "type": "bar",
                        "xsrc": "jenniio:0:e623e9",
                        "ysrc": "jenniio:0:1aa10d",
                        "marker": {
                            "color": "rgb(252, 141, 98)",
                            "opacity": 0.59
                        },
                        "hoverinfo": "x+y+name",
                        "showlegend": false,
                        "stackgroup": null,
                        "orientation": "h"
                    },
                    {
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0, 0, 0)",
                            "shape": "linear",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "name": "EU standard",
                        "type": "scatter",
                        "xsrc": "jenniio:1:fb3175",
                        "ysrc": "jenniio:0:1aa10d",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "type": "constant",
                            "color": "rgb(0, 0, 0)",
                            "value": 15,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoveron": "points",
                        "hoverinfo": "x+name",
                        "hoverlabel": {
                            "align": "auto",
                            "namelength": 15
                        },
                        "connectgaps": true,
                        "orientation": "v",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Emissions of hydrogen production\n(kgCO2eq/kgH2)"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            10.526315789473685
                        ],
                        "title": {
                            "text": "Emissions (kgCO2eq/kgH2)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "bargap": 0.5,
                    "barmode": "relative",
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jenniio",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-08 10:07:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jenniio",
                "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-08T09:21:52.398588Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Alicia25/10.embed",
            "fid": "Alicia25:10",
            "filename": "Plot 10",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Alicia25/10/9_J8599GKWIILZPL2BNQHRDSB9E94PTB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Alicia25/10/2_MMX0KRFD27XVQMRDZ3F47WDHIF598S.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Alicia25/10/8_5JQTP8MEMOK4K6RBFN6OV795D3LD4W.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Alicia25/10/9_J8599GKWIILZPL2BNQHRDSB9E94PTB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Alicia25:10",
                "plots": "https://api.plotly.com/v2/plots/Alicia25:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=Alicia25"
            },
            "owner": "Alicia25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Alicia25/10/",
            "world_readable": true,
            "date_modified": "2024-04-22T09:49:39.985Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Alicia25/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "ysrc": "Alicia25:14:7ed0dc",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:0d46b2",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:05536f",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:98e627",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:307963",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:e1b90f",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:f344be",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:77b8ab",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:4bc7c2",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:ee440c",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:3b1e7c",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:38017e",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:c6d69c",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:0fa4f1",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:67ec34",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:430424",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:dbfe97",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:5f3f2a",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:293de8",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:89df55",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:a82fc9",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:2b16db",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "L"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:55dc82",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "L"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:a17148",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "M"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:138f2a",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "M"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:241baf",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:860c9f",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:efccd4",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:4aa663",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:8d58f2",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:8cf8f9",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:a12ceb",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:b31de0",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:48755a",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "R"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:b15fbd",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "R"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:a1685c",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "S"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:8d19a9",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "S"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:e01aa4",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "T"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:9e5162",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "T"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:58874b",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "U"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:c2be7b",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "U"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:1f538c",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "V"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:60efc3",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "V"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:25e28f",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "W"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:c51087",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "W"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:c74f8c",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "X"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:0fd2cc",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "X"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:ab0afe",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Y"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:60059a",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Y"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:bfe962",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Z"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:83aec9",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Z"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:95a617",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AA"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:11f4f2",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AA"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:8fdd03",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AB"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:bc6803",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AB"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:349ede",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AC"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:82cf25",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AC"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:6d734b",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AD"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:59f8d9",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AD"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:c5ffce",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AE"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:b592d7",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AE"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:5e5331",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AF"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:e0e386",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AF"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:9a78e0",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AG"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:70f212",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AG"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:d0cfe1",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AH"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:292564",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AH"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:f5571e",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AI"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:28e3dd",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AI"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:0c26f0",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AJ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:d1a4a3",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AJ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:18c0f3",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AK"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:6483f0",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AK"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:e0fd42",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AL"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:eb2339",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AL"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:5160de",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AM"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:7f3dcf",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AM"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:42f3dd",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AN"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:4ae86d",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AN"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:301315",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AO"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:8a6738",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AO"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:fc9247",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AP"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:c772ed",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AP"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:fbcfb1",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AQ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:9c9295",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AQ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:9359c5",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AR"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:d63e41",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AR"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:25cf15",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AS"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:5baaa4",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AS"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:b00c72",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AT"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:2d6177",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AT"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:708434",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AU"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:2b5125",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AU"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:477ac7",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AV"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:4039f6",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AV"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:f1a919",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AW"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:eded4a",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AW"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:6fa447",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AX"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:542056",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AX"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:f59af4",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AY"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:b06e20",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AY"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:d2b777",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AZ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:06f1e2",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AZ"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:f6878c",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BA"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:e15870",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BA"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:fba7ce",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BB"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:074ea3",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 203, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BB"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:ba5a2d",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BC"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:52f9a8",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BC"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:ab470a",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BD"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:da8b8f",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BD"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:7d5ae9",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BE"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:205cef",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BE"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:19c034",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BF"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:2609ea",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BF"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:96dd0f",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 161, 90)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BG"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:72d995",
                        "notched": false,
                        "boxpoints": false,
                        "fillcolor": "rgba(255, 255, 255, 0.5)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BG"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:b26fc9",
                        "notched": false,
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "BH"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:14:df584d",
                        "boxpoints": false,
                        "fillcolor": "rgba(255, 255, 255, 0.5)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "BH"
                            }
                        },
                        "type": "box",
                        "ysrc": "Alicia25:15:6a8c17",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "width": 1600,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            73.5
                        ],
                        "ticks": "inside",
                        "ticklen": 2,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true,
                        "gridcolor": "rgb(8, 8, 8)",
                        "linecolor": "rgb(8, 8, 8)",
                        "linewidth": 2,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 6,
                        "range": [
                            -15.878923577777778,
                            0.2221079777777777
                        ],
                        "tick0": -6,
                        "ticks": "inside",
                        "nticks": 10,
                        "ticklen": 2,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 15
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgb(8, 8, 8)",
                        "linecolor": "rgb(8, 8, 8)",
                        "linewidth": 2,
                        "showticklabels": true
                    },
                    "boxgap": 0.4,
                    "height": 778,
                    "margin": {
                        "b": 66,
                        "l": 66,
                        "r": 66,
                        "t": 66,
                        "pad": 0
                    },
                    "autosize": false,
                    "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"
                    },
                    "showlegend": false,
                    "boxgroupgap": 0.3
                }
            },
            "height": 778,
            "width": 1600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Alicia25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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-02-05 12:01:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Alicia25",
                "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-08T09:00:26.364539Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esanta/103.embed",
            "fid": "Esanta:103",
            "filename": "plot from API (52)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Esanta/103/9_ZODWHD4GBXJP7GOD0AWH5SCS85IDAJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Esanta/103/2_8QSAXF7W7AQ7B5ICVTL3JMN3PVI4UZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/103/8_FCSU968JPM6JF63VD4LW9LIAHVHJPT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/103/9_ZODWHD4GBXJP7GOD0AWH5SCS85IDAJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esanta:103",
                "plots": "https://api.plotly.com/v2/plots/Esanta:103",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esanta"
            },
            "owner": "Esanta",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Systolic vs Diastolic",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Esanta/103/systolic-vs-diastolic/",
            "world_readable": true,
            "date_modified": "2024-06-19T07:09:06.947Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esanta/103/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue"
                        },
                        "mode": "lines markers",
                        "name": "Systolic",
                        "type": "scatter",
                        "xsrc": "Esanta:104:f669dc",
                        "ysrc": "Esanta:104:212ab4",
                        "textsrc": "Esanta:104:b78c80"
                    },
                    {
                        "line": {
                            "color": "green"
                        },
                        "mode": "lines markers",
                        "name": "Diastolic",
                        "type": "scatter",
                        "xsrc": "Esanta:104:f669dc",
                        "ysrc": "Esanta:104:dfdd33",
                        "textsrc": "Esanta:104:b78c80"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esanta",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 19:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esanta",
                "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-08T08:57:14.145850Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esanta/101.embed",
            "fid": "Esanta:101",
            "filename": "plot from API (51)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Esanta/101/9_ZWIE0ZGA2CC4EDFVIM1UTUE4JGDTBD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Esanta/101/2_2WBEAKNJMBWY0KYSDTV0JUF59MV2OC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/101/8_5OFNRGNIKZ0GT8W5RQBSTJC49S8U6T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/101/9_ZWIE0ZGA2CC4EDFVIM1UTUE4JGDTBD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esanta:101",
                "plots": "https://api.plotly.com/v2/plots/Esanta:101",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esanta"
            },
            "owner": "Esanta",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Systolic vs Diastolic",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Esanta/101/systolic-vs-diastolic/",
            "world_readable": true,
            "date_modified": "2024-06-19T07:09:10.683Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esanta/101/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue"
                        },
                        "mode": "lines markers",
                        "name": "Systolic",
                        "type": "scatter",
                        "xsrc": "Esanta:102:5cde89",
                        "ysrc": "Esanta:102:7bce49",
                        "textsrc": "Esanta:102:a6efc2"
                    },
                    {
                        "line": {
                            "color": "green"
                        },
                        "mode": "lines markers",
                        "name": "Diastolic",
                        "type": "scatter",
                        "xsrc": "Esanta:102:5cde89",
                        "ysrc": "Esanta:102:c30c5c",
                        "textsrc": "Esanta:102:a6efc2"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esanta",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 19:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esanta",
                "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-08T08:55:10.981138Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~1-1/4.embed",
            "fid": "1-1:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/1-1/4/9_Q0QGPOYDF2MAVJPCNYONM054KQN8DI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/1-1/4/2_YPMHPLJ3PTX3YJZN7PRIOPH872W07A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/1-1/4/8_S5SM7W12EDXQLIC2IOVZI0EMRQSLUO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/1-1/4/9_Q0QGPOYDF2MAVJPCNYONM054KQN8DI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/1-1:4",
                "plots": "https://api.plotly.com/v2/plots/1-1:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=1-1"
            },
            "owner": "1-1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~1-1/4/",
            "world_readable": true,
            "date_modified": "2024-04-08T08:55:10.991Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~1-1/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C - D - E - F - G - H"
                            }
                        },
                        "mode": "markers",
                        "type": "heatmap",
                        "xsrc": "1-1:3:b69f1c",
                        "ysrc": "1-1:3:e55fdf",
                        "zsrc": "1-1:3:aae23a,72a3ce,597398,7761ec,b5cfe7,c172c0",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "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"
                    },
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#fff7f3"
                            ],
                            [
                                0.125,
                                "#fde0dd"
                            ],
                            [
                                0.25,
                                "#fcc5c0"
                            ],
                            [
                                0.375,
                                "#fa9fb5"
                            ],
                            [
                                0.5,
                                "#f768a1"
                            ],
                            [
                                0.625,
                                "#dd3497"
                            ],
                            [
                                0.75,
                                "#ae017e"
                            ],
                            [
                                0.875,
                                "#7a0177"
                            ],
                            [
                                1,
                                "#49006a"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~1-1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 15:05:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "1-1",
                "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-08T08:39:44.156388Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/1.embed",
            "fid": "peter.capcara:1",
            "filename": "Duval_Triangle_DGA_Interpretation",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/1/9_W1YCBP16MCQ6TE66165M3IV3NA33VW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/1/2_XDT41KSP01L4UFHZTXU90UV1ETSZFT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/1/8_MPV9YQ05VMQ6LEXUAPRTLNRNPJK5L3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/1/9_W1YCBP16MCQ6TE66165M3IV3NA33VW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:1",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/1/",
            "world_readable": true,
            "date_modified": "2024-04-08T11:24:42.354Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:11:1e00a9",
                        "bsrc": "peter.capcara:11:5d1f06",
                        "csrc": "peter.capcara:11:a8e213",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "PD",
                        "type": "scatterternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:11:e2c863",
                        "bsrc": "peter.capcara:11:b2f9a3",
                        "csrc": "peter.capcara:11:56411e",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "D1",
                        "type": "scatterternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:11:d8bec0",
                        "bsrc": "peter.capcara:11:972482",
                        "csrc": "peter.capcara:11:686928",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "D2",
                        "type": "scatterternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:11:a64a3e",
                        "bsrc": "peter.capcara:11:c23e5a",
                        "csrc": "peter.capcara:11:b6c2bf",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "DT",
                        "type": "scatterternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:11:d56404",
                        "bsrc": "peter.capcara:11:ba81f7",
                        "csrc": "peter.capcara:11:e1a1a4",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "T1",
                        "type": "scatterternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:11:d97d2d",
                        "bsrc": "peter.capcara:11:d9b50f",
                        "csrc": "peter.capcara:11:63fb65",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "T2",
                        "type": "scatterternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:11:442ced",
                        "bsrc": "peter.capcara:11:b28eb5",
                        "csrc": "peter.capcara:11:d28499",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:11:676a4c",
                        "bsrc": "peter.capcara:11:9226c5",
                        "csrc": "peter.capcara:11:eaccde",
                        "mode": "markers",
                        "type": "scatterternary",
                        "marker": {
                            "size": 50,
                            "color": "black",
                            "symbol": 100
                        }
                    },
                    {
                        "asrc": "peter.capcara:11:cf3619",
                        "bsrc": "peter.capcara:11:e8f87a",
                        "csrc": "peter.capcara:11:13233b",
                        "mode": "markers",
                        "type": "scatterternary",
                        "marker": {
                            "size": 8,
                            "color": "black",
                            "symbol": 2
                        }
                    },
                    {
                        "asrc": "peter.capcara:11:61486f",
                        "bsrc": "peter.capcara:11:794408",
                        "csrc": "peter.capcara:11:3d98e7",
                        "mode": "markers",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue"
                        }
                    },
                    {
                        "asrc": "peter.capcara:11:409d52",
                        "bsrc": "peter.capcara:11:922ee6",
                        "csrc": "peter.capcara:11:b66520",
                        "mode": "markers",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "yellow"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "width": 1044,
                    "height": 545,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        }
                    },
                    "autosize": true,
                    "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
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 545,
            "width": 1044,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "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-08T08:22:16.183208Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~inara.tusseyeva/26.embed",
            "fid": "inara.tusseyeva:26",
            "filename": "BubblePrePost",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/inara.tusseyeva/26/9_P57716EQX2MX23KRIZV0ZUPOAMIDPG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/inara.tusseyeva/26/2_CQZ45RBKGHM6GGMXTHC0XMTTIUQLGA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/inara.tusseyeva/26/8_ZIST7X37QGWTEDRP5WROYFSP26A6H7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/inara.tusseyeva/26/9_P57716EQX2MX23KRIZV0ZUPOAMIDPG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/inara.tusseyeva:26",
                "plots": "https://api.plotly.com/v2/plots/inara.tusseyeva:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=inara.tusseyeva"
            },
            "owner": "inara.tusseyeva",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~inara.tusseyeva/26/",
            "world_readable": true,
            "date_modified": "2024-04-08T08:22:46.577Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~inara.tusseyeva/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "x": "pre_ArtN",
                                "y": "pre_Res",
                                "marker": {
                                    "size": "pre_SubjN"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Pre-Post",
                        "type": "scatter",
                        "xsrc": "inara.tusseyeva:25:bde300",
                        "ysrc": "inara.tusseyeva:25:e59699",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "pre_SubjN"
                                }
                            },
                            "color": "rgb(99, 233, 250)",
                            "sizeref": 0.14285714285714285,
                            "sizesrc": "inara.tusseyeva:25:582ffb",
                            "sizemode": "area"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(99, 233, 250)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoveron": "points",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "hab_ArtN",
                                "y": "hab_Res",
                                "marker": {
                                    "size": "hab_SubjN"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Habituation",
                        "type": "scatter",
                        "xsrc": "inara.tusseyeva:25:d5a93b",
                        "ysrc": "inara.tusseyeva:25:936966",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 255, 255)"
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "hab_SubjN"
                                }
                            },
                            "color": "rgb(244, 219, 33)",
                            "opacity": 0.7,
                            "sizeref": 0.14285714285714285,
                            "sizesrc": "inara.tusseyeva:25:c6d97b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            46.53803732968318,
                            71.74751916781197
                        ],
                        "title": {
                            "text": "Articles"
                        },
                        "nticks": 0,
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": false,
                        "rangeslider": {
                            "range": [
                                35.22385172424744,
                                56.61690177530656
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.304325476809335,
                            1.3308779396070194
                        ],
                        "title": {
                            "text": "significance: Negative, No Significance, Positive"
                        },
                        "nticks": 3,
                        "autorange": false
                    },
                    "legend": {
                        "x": 1.02196656111677,
                        "y": 0.6871426800737492,
                        "font": {
                            "size": 16
                        }
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~inara.tusseyeva",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-06-07 11:26:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "inara.tusseyeva",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}