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

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA5LTA2KzAxJTNBNTIlM0E0OS4xNzI1NjklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOS0wNisxNyUzQTEzJTNBMzMuODQxODkwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-09-06T17:13:33.841890Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jankar/1.embed",
            "fid": "jankar:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jankar/1/9_7KBD2FK1DVC1SFZD05CRIP0X3Y20DB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jankar/1/2_M3K5GFI0RRLV1MMCMN4DGLGKWWFHG7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jankar/1/8_1O1WJAY7MYYWBCC5M50LSAS1WNPQ3A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jankar/1/9_7KBD2FK1DVC1SFZD05CRIP0X3Y20DB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jankar:1",
                "plots": "https://api.plotly.com/v2/plots/jankar:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jankar"
            },
            "owner": "jankar",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jankar/1/",
            "world_readable": true,
            "date_modified": "2025-09-09T19:05:13.958Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jankar/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "1"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:d50745",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "2"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:406ce6",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "3"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:9b9bda",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "4"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:bb2e26",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "5"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:2fc49c",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "6"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:1caac6",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "7"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:9e6f07",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "8"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:475513",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "9"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:e4523f",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Range",
                                "y": "10"
                            }
                        },
                        "mode": "markers",
                        "type": "scattergl",
                        "xsrc": "jankar:0:3d9ac2",
                        "ysrc": "jankar:0:dd242f",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 14
                        },
                        "text": "<b>Count</b>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "color": "Black",
                        "range": [
                            1801.1946082561078,
                            3167.8107273237856
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 13
                            },
                            "text": "Timeline"
                        },
                        "anchor": "y",
                        "nticks": 30,
                        "ticklen": 5,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": false,
                        "gridwidth": 1,
                        "tickangle": "auto",
                        "tickwidth": 1,
                        "automargin": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                1903.1771935051393,
                                3185.8228064948607
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "color": "Black",
                        "range": [
                            0.5273164335664337,
                            1.7204982517482517
                        ],
                        "title": {
                            "text": "Revenue"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "automargin": false,
                        "showspikes": false,
                        "showticklabels": true
                    },
                    "margin": {
                        "b": 50,
                        "l": 50,
                        "r": 50,
                        "t": 50
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "clickmode": "event+select",
                    "hovermode": "y",
                    "hoverlabel": {
                        "font": {
                            "size": 20,
                            "family": "Arial"
                        },
                        "align": "auto"
                    },
                    "selectdirection": "h"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jankar",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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": "2025-09-06 17:08:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jankar",
                "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": "2025-09-06T15:44:18.103180Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sachin.bhirodkar/1.embed",
            "fid": "Sachin.bhirodkar:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sachin.bhirodkar/1/9_IRKUPOD7G9PQ7G8R25EDCEQ7QYGDD1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sachin.bhirodkar/1/2_KZS1K6DZ8FU2MR6A0URX9FM0D4DBK5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sachin.bhirodkar/1/8_AUXTOQ6XMZK0XXZTVUHDPN39EKYF31.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sachin.bhirodkar/1/9_IRKUPOD7G9PQ7G8R25EDCEQ7QYGDD1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sachin.bhirodkar:1",
                "plots": "https://api.plotly.com/v2/plots/Sachin.bhirodkar:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sachin.bhirodkar"
            },
            "owner": "Sachin.bhirodkar",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Sachin.bhirodkar/1/",
            "world_readable": true,
            "date_modified": "2025-09-06T15:44:18.114Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sachin.bhirodkar/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "\n  SG2_Impr_G_ALL_WNK_Day_35C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:4ea902",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "\n  SG2_Impr_G_ALL_WNK_Day_50C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:f59544",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "name": "\n  SG2_Impr_G_ALL_WNK_Night_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:9af893",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "name": "\n  SG2_Impr_G_ALL_WONK_Day_35C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:2c4833",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "name": "\n  SG2_Impr_G_ALL_WONK_Day_50C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:eb9f88",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G"
                            }
                        },
                        "name": "\n  SG2_Impr_G_ALL_WONK_Night_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:e0509f",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "H"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WNK_Day_35C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:cbf47e",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "I"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WNK_Day_50C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:0df6f5",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "J"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WNK_Night_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:6e6f4c",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "K"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WONK_Day_35C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:2f19ff",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "L"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WONK_Day_50C_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:8c9f97",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "M"
                            }
                        },
                        "name": "\n  SG2_WSP_G_ALL_WONK_Night_Charging",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:b7498b",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "N"
                            }
                        },
                        "name": "\n  Noise\n  Limits_Night time",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:ef056d",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "O"
                            }
                        },
                        "name": "\n  Noise\n  Limits_Daytime",
                        "type": "bar",
                        "xsrc": "Sachin.bhirodkar:0:ade640",
                        "ysrc": "Sachin.bhirodkar:0:98bdec",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Least Used Features"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            7.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            47.36842105263158
                        ],
                        "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/~Sachin.bhirodkar",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-06 15:04:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sachin.bhirodkar",
                "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": "2025-09-06T13:25:55.522946Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Luca01/1.embed",
            "fid": "Luca01:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Luca01/1/9_O51OHLFUHKS703BQEIVWN9ZLDJWBDS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Luca01/1/2_VDC5D58N4J67O06RMHQ9H1T7RV3NCG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Luca01/1/8_WAV60LDENC60ONS3CIE1Z8PZ983URG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Luca01/1/9_O51OHLFUHKS703BQEIVWN9ZLDJWBDS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Luca01:1",
                "plots": "https://api.plotly.com/v2/plots/Luca01:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Luca01"
            },
            "owner": "Luca01",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Luca01/1/",
            "world_readable": true,
            "date_modified": "2025-09-06T13:30:20.620Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Luca01/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1a5147",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x",
                                "y": "Trace 0, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Wasilewski",
                        "type": "scatter",
                        "xsrc": "Luca01:0:55a9d4",
                        "ysrc": "Luca01:0:efb733"
                    },
                    {
                        "uid": "fe4f01",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 1, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Saburi",
                        "type": "scatter",
                        "xsrc": "Luca01:0:a238c5",
                        "ysrc": "Luca01:0:8cab39",
                        "visible": true
                    },
                    {
                        "uid": "be8796",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 2, x",
                                "y": "Trace 2, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Hanlon",
                        "type": "scatter",
                        "xsrc": "Luca01:0:887030",
                        "ysrc": "Luca01:0:45b3d2",
                        "visible": true
                    },
                    {
                        "uid": "aa0c3e",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 4, x",
                                "y": "Trace 4, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Kornilov",
                        "type": "scatter",
                        "xsrc": "Luca01:0:eff66f",
                        "ysrc": "Luca01:0:fc1202"
                    },
                    {
                        "uid": "57d5db",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 5, x",
                                "y": "Trace 5, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Melton",
                        "type": "scatter",
                        "xsrc": "Luca01:0:b72c8f",
                        "ysrc": "Luca01:0:511866"
                    },
                    {
                        "uid": "5a8384",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 6, x",
                                "y": "Trace 6, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Nishida",
                        "type": "scatter",
                        "xsrc": "Luca01:0:cb8a89",
                        "ysrc": "Luca01:0:215b13"
                    },
                    {
                        "uid": "141569",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 7, x",
                                "y": "Trace 7, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Smith",
                        "type": "scatter",
                        "xsrc": "Luca01:0:98ff4e",
                        "ysrc": "Luca01:0:7825b5"
                    },
                    {
                        "uid": "1346b0",
                        "meta": {
                            "columnNames": {
                                "x": "Trace 8, x",
                                "y": "Trace 8, y"
                            }
                        },
                        "mode": "markers",
                        "name": "Tang",
                        "type": "scatter",
                        "xsrc": "Luca01:0:528d18",
                        "ysrc": "Luca01:0:f599f0"
                    },
                    {
                        "uid": "560525",
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T"
                            }
                        },
                        "mode": "markers",
                        "name": "Frenzel",
                        "type": "scatter",
                        "xsrc": "Luca01:0:810014",
                        "ysrc": "Luca01:0:b69891",
                        "stackgroup": null
                    },
                    {
                        "uid": "4e4a62",
                        "meta": {
                            "columnNames": {
                                "x": "U",
                                "y": "V"
                            }
                        },
                        "mode": "markers",
                        "name": "Kunzman",
                        "type": "scatter",
                        "xsrc": "Luca01:0:10d3a2",
                        "ysrc": "Luca01:0:b2e74c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Influence of Ni content on Ms transformation temperature"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            478.0900095037373,
                            515.051070876817
                        ],
                        "title": {
                            "text": "Mole Fraction Ni"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            59.639452438849915,
                            368.8659575009727
                        ],
                        "title": {
                            "text": "Ms temperature (K)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "select"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Luca01",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-06 13:24:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Luca01",
                "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": "2025-09-06T12:26:14.464499Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~david.szilvasi/4.embed",
            "fid": "david.szilvasi:4",
            "filename": "IOP Verlauf",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/david.szilvasi:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/david.szilvasi:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/david.szilvasi:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/david.szilvasi:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/david.szilvasi:4",
                "plots": "https://api.plotly.com/v2/plots/david.szilvasi:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=david.szilvasi"
            },
            "owner": "david.szilvasi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~david.szilvasi/4/",
            "world_readable": true,
            "date_modified": "2025-09-15T14:37:47.871Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~david.szilvasi/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Date",
                                "y": "IOP"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "IOP",
                        "type": "scatter",
                        "xsrc": "david.szilvasi:8:12b708",
                        "ysrc": "david.szilvasi:8:f4095e",
                        "marker": {
                            "color": "rgb(112, 112, 112)"
                        },
                        "hoverlabel": {
                            "namelength": 0
                        },
                        "stackgroup": null,
                        "hovertemplate": "IOP: %{y}<br>Date: %{x}"
                    },
                    {
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "x": "Date",
                                "y": "Value",
                                "text": "",
                                "marker": {
                                    "size": "IOP",
                                    "color": ""
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Events",
                        "type": "scatter",
                        "xsrc": "david.szilvasi:9:0c6245",
                        "ysrc": "david.szilvasi:9:e6c7bd",
                        "yaxis": "y2",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "IOP",
                                    "color": "Location"
                                }
                            },
                            "size": 8,
                            "color": "#EF553B",
                            "symbol": "diamond",
                            "sizeref": 0.015308641975308642,
                            "sizemode": "area"
                        },
                        "hoverinfo": "x",
                        "cliponaxis": true,
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "stackgroup": null,
                        "texttemplate": "",
                        "hovertemplate": "%{data.Event}"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Start Date",
                                "y": "Sort order",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "david.szilvasi:10:d6ef96",
                        "ysrc": "david.szilvasi:10:8de54d",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "Medication"
                                    }
                                },
                                "type": "groupby",
                                "styles": [
                                    {
                                        "value": {
                                            "name": "Acetazolamid",
                                            "legendgroup": ""
                                        },
                                        "target": "Acetazolamid"
                                    },
                                    {
                                        "value": {
                                            "name": "Brimonidin",
                                            "legendgroup": ""
                                        },
                                        "target": "Brimonidin"
                                    },
                                    {
                                        "value": {
                                            "name": "Dexagel"
                                        },
                                        "target": "Dexagel"
                                    },
                                    {
                                        "value": {
                                            "fill": "none",
                                            "mode": "markers+lines+text",
                                            "name": "Dexapos",
                                            "marker": {
                                                "size": 10
                                            },
                                            "hoveron": "points",
                                            "connectgaps": false,
                                            "legendgroup": "",
                                            "texttemplate": "%{medication_timeline_150925.Dosage}"
                                        },
                                        "target": "Dexapos"
                                    },
                                    {
                                        "value": {
                                            "name": "Diclofenac"
                                        },
                                        "target": "Diclofenac"
                                    },
                                    {
                                        "value": {
                                            "name": "Dorzolamid/Timolol"
                                        },
                                        "target": "Dorzolamid/Timolol"
                                    },
                                    {
                                        "value": {
                                            "name": "Ofloxicin"
                                        },
                                        "target": "Ofloxicin"
                                    }
                                ],
                                "groupssrc": "david.szilvasi:10:2999ea"
                            }
                        ],
                        "connectgaps": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "IOP History"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2025-07-10 21:44:46.4837",
                            "2025-09-23 04:31:56.5199"
                        ],
                        "ticks": "",
                        "title": {
                            "text": "Date"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.2063912747316414,
                            32.793608725268356
                        ],
                        "title": {
                            "text": "IOP"
                        },
                        "domain": [
                            0.25,
                            0.88
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "images": [],
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "title": {
                            "text": "Legend"
                        },
                        "xanchor": "left",
                        "yanchor": "bottom",
                        "traceorder": "grouped",
                        "borderwidth": 2
                    },
                    "shapes": [],
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            2
                        ],
                        "title": {
                            "text": "Events"
                        },
                        "domain": [
                            0.9,
                            1
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": false,
                        "showticklabels": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.6666666666666667,
                            7.333333333333333
                        ],
                        "title": {
                            "text": "Medications"
                        },
                        "domain": [
                            0,
                            0.23
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": false,
                        "showticklabels": false
                    },
                    "barmode": "group",
                    "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": "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
                                    },
                                    "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": "#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": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "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",
                                "#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": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    },
                    "hovermode": "closest",
                    "separators": ", ",
                    "showlegend": true,
                    "annotations": [],
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~david.szilvasi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-06 11:46:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "david.szilvasi",
                "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": "2025-09-06T11:17:45.462778Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Cikguhadz/2.embed",
            "fid": "Cikguhadz:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Cikguhadz/2/9_R8L3VMIF9YXKGG6DL1IE0T11TFUAB9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Cikguhadz/2/2_1AQY7P9W685T5RKC14UO5QJC70XCMC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Cikguhadz/2/8_H2VGKDUJH21IZIO2A1V2R2PC96SMZ0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Cikguhadz/2/9_R8L3VMIF9YXKGG6DL1IE0T11TFUAB9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Cikguhadz:2",
                "plots": "https://api.plotly.com/v2/plots/Cikguhadz:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Cikguhadz"
            },
            "owner": "Cikguhadz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Cikguhadz/2/",
            "world_readable": true,
            "date_modified": "2025-09-06T11:17:45.477Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Cikguhadz/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "120",
                                "y": "125",
                                "z": "130"
                            }
                        },
                        "mode": "markers",
                        "type": "surface",
                        "xsrc": "Cikguhadz:1:97c537",
                        "ysrc": "Cikguhadz:1:6a05ec",
                        "zsrc": "Cikguhadz:1:61502a"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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/~Cikguhadz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.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": "2025-09-06 11:02:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Cikguhadz",
                "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": "2025-09-06T10:57:34.029977Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bmarinob/38.embed",
            "fid": "bmarinob:38",
            "filename": "Plot 38",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bmarinob/38/9_WBBFXN61E94LK0V7J7BHFMV49U3S8B.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bmarinob/38/2_XAOH3OMNRTU3IK4HI27JSQYHSUFV3E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bmarinob/38/8_YTPLCX8V5JWD092V6LTG0W77E86QIS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bmarinob/38/9_WBBFXN61E94LK0V7J7BHFMV49U3S8B.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bmarinob:38",
                "plots": "https://api.plotly.com/v2/plots/bmarinob:38",
                "parent": "https://api.plotly.com/v2/folders/home?user=bmarinob"
            },
            "owner": "bmarinob",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bmarinob/38/",
            "world_readable": true,
            "date_modified": "2025-09-14T16:22:59.478Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bmarinob/38/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-4968",
                                "y": "tCO2-4968"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "4968",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:43910b",
                        "ysrc": "bmarinob:37:32926f",
                        "marker": {
                            "size": 10,
                            "color": "rgb(2, 5, 39)",
                            "symbol": "circle-open"
                        },
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year -3711",
                                "y": "tCO2-3711"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "3711",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:079fd7",
                        "ysrc": "bmarinob:37:81f93a",
                        "marker": {
                            "size": 10,
                            "color": "rgb(21, 21, 21)",
                            "symbol": "square"
                        },
                        "visible": true,
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-3575",
                                "y": "TCO2-3575"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "3575",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:e48b59",
                        "ysrc": "bmarinob:37:b5a3d0",
                        "marker": {
                            "size": 10,
                            "color": "rgb(16, 16, 16)",
                            "symbol": "diamond-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-3589",
                                "y": "tCO2-3589"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "3589",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:4697d9",
                        "ysrc": "bmarinob:37:f35ecd",
                        "marker": {
                            "size": 10,
                            "color": "rgb(10, 1, 20)",
                            "symbol": "diamond-tall-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-934",
                                "y": "tCO2-934"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "934",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:a860f9",
                        "ysrc": "bmarinob:37:8a99ee",
                        "marker": {
                            "size": 10,
                            "color": "rgb(1, 13, 15)"
                        },
                        "visible": true,
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year-3592",
                                "y": "tCO2-3592"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "3592",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:ba5237",
                        "ysrc": "bmarinob:37:f9587d",
                        "marker": {
                            "size": 10,
                            "color": "rgb(38, 37, 38)",
                            "symbol": "star-square-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-2363",
                                "y": "tCO2-2363"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "2363",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:92dd90",
                        "ysrc": "bmarinob:37:2b59d0",
                        "marker": {
                            "size": 10,
                            "color": "rgb(24, 24, 23)",
                            "symbol": "square-open"
                        },
                        "visible": true,
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-562",
                                "y": "tCO2-562"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "562",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:89479e",
                        "ysrc": "bmarinob:37:82571c",
                        "marker": {
                            "size": 10,
                            "color": "rgb(18, 18, 18)",
                            "symbol": "diamond-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-1408",
                                "y": "tCO2-1408"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "1408",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:0d6107",
                        "ysrc": "bmarinob:37:eb1b97",
                        "marker": {
                            "size": 10,
                            "color": "rgb(28, 27, 27)",
                            "symbol": "cross-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29
                        ]
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year-612",
                                "y": "tCO2-612"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "612",
                        "type": "scatter",
                        "xsrc": "bmarinob:37:33fcb3",
                        "ysrc": "bmarinob:37:f5e658",
                        "marker": {
                            "size": 10,
                            "color": "rgb(16, 16, 16)",
                            "symbol": "triangle-down-open"
                        },
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30
                        ]
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2001.870152574698,
                            2055.129847425302
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "YEAR"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -42.59024135788033,
                            2.775845957880328
                        ],
                        "title": {
                            "font": {
                                "size": 19
                            },
                            "text": "Net CO<sub>2</sub> Removal"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.9621082713406205,
                        "y": 0.7637377637377637,
                        "title": {
                            "text": "Project ID"
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 80,
                        "t": 0
                    },
                    "autosize": true,
                    "dragmode": "select",
                    "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/~bmarinob",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.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": "2016-02-23 18:05:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bmarinob",
                "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": "2025-09-06T09:41:38.423226Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ditari/1.embed",
            "fid": "Ditari:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Ditari/1/9_D1ET3Q92B0NTTY99YO8R9XF5JBGFE6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Ditari/1/2_UNHAU8OSATZVY8K1A8C6IST9FL0AJU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ditari/1/8_7RU7W95OF6YXSK5Q8DXFWN165HIII2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Ditari/1/9_D1ET3Q92B0NTTY99YO8R9XF5JBGFE6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ditari:1",
                "plots": "https://api.plotly.com/v2/plots/Ditari:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ditari"
            },
            "owner": "Ditari",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Ditari/1/",
            "world_readable": true,
            "date_modified": "2025-09-06T09:41:38.434Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ditari/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e60d71",
                        "cmax": 7.99662,
                        "cmin": -6.326524,
                        "meta": {
                            "columnNames": {
                                "x": "x[0] - x[1] - x[2] - x[3] - x[4] - x[5] - x[6] - x[7] - x[8] - x[9] - x[10] - x[11] - x[12] - x[13] - x[14] - x[15] - x[16] - x[17] - x[18] - x[19] - x[20] - x[21] - x[22] - x[23] - x[24]",
                                "y": "y[0] - y[1] - y[2] - y[3] - y[4] - y[5] - y[6] - y[7] - y[8] - y[9] - y[10] - y[11] - y[12] - y[13] - y[14] - y[15] - y[16] - y[17] - y[18] - y[19] - y[20] - y[21] - y[22] - y[23] - y[24]",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4] - z[5] - z[6] - z[7] - z[8] - z[9] - z[10] - z[11] - z[12] - z[13] - z[14] - z[15] - z[16] - z[17] - z[18] - z[19] - z[20] - z[21] - z[22] - z[23] - z[24]"
                            }
                        },
                        "name": "",
                        "type": "surface",
                        "xsrc": "Ditari:0:06f98d,9c676d,6283a3,8c47de,e19191,7e0fc8,1b2b7c,e932f0,35e574,46593e,336921,08e266,4d8a3c,f3ab2f,d239ac,fac495,daa4f1,c0818d,7932bd,92a49e,5cf290,8d7981,d415a6,ac2eb5,fe532b",
                        "ysrc": "Ditari:0:6095c0,69090d,5def62,70245c,d286f1,1d9fa5,d380ef,677cae,6066b9,bb886a,5a509a,29be7a,8a2edf,fef7e8,3ca645,a95daa,4871ed,e30849,688788,76757a,7836fa,ebefe2,87fc99,9a87f7,479cf2",
                        "zmax": 7.99662,
                        "zmin": -6.326524,
                        "zsrc": "Ditari:0:ad2006,4fcf98,7cb594,3b3eaf,d30dc1,1de250,a41f62,042c78,da1fa5,56aa1e,7966ef,13b6f9,e41938,04c333,fd32fe,f61ebe,81d93f,5bfa3b,81cc30,fbc878,271ea5,280866,c8ba1b,7dfcfe,3dfe8d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.06274509803921569,
                                "#48186a"
                            ],
                            [
                                0.12549019607843137,
                                "#472d7b"
                            ],
                            [
                                0.18823529411764706,
                                "#424086"
                            ],
                            [
                                0.25098039215686274,
                                "#3b528b"
                            ],
                            [
                                0.3137254901960784,
                                "#33638d"
                            ],
                            [
                                0.3764705882352941,
                                "#2c728e"
                            ],
                            [
                                0.4392156862745098,
                                "#26828e"
                            ],
                            [
                                0.5019607843137255,
                                "#21918c"
                            ],
                            [
                                0.5647058823529412,
                                "#1fa088"
                            ],
                            [
                                0.6274509803921569,
                                "#28ae80"
                            ],
                            [
                                0.6901960784313725,
                                "#3fbc73"
                            ],
                            [
                                0.7529411764705882,
                                "#5ec962"
                            ],
                            [
                                0.8156862745098039,
                                "#84d44b"
                            ],
                            [
                                0.8784313725490196,
                                "#addc30"
                            ],
                            [
                                0.9411764705882353,
                                "#d8e219"
                            ],
                            [
                                1,
                                "#fde725"
                            ]
                        ],
                        "showlegend": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(217, 217, 217)"
                        },
                        "yaxis": {
                            "type": "linear",
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(217, 217, 217)"
                        },
                        "zaxis": {
                            "type": "linear",
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(217, 217, 217)"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 0.6327354564971086,
                                "y": 0.6494984255868516,
                                "z": 0.874324975443727
                            },
                            "center": {
                                "x": -0.030844038895567277,
                                "y": 0.00222098940216298,
                                "z": 0.02233581882146454
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "width": 840,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "anchor": "y",
                        "domain": [
                            0.13,
                            0.905
                        ]
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "anchor": "x",
                        "domain": [
                            0.11,
                            0.925
                        ]
                    },
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "dragmode": "zoom",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "text": "<b><b></b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ditari",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.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": "2025-09-05 13:16:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ditari",
                "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": "2025-09-06T04:31:35.589084Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SCM040/1.embed",
            "fid": "SCM040:1",
            "filename": "SM in MH settings",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SCM040/1/9_SH61PZGHCPJ6CGQ0VC4SODTRTLA93Q.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SCM040/1/2_ZITJGLW1VAGYXCRUMAT3DPQBRR2POG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SCM040/1/8_QLO41618XKOEYIDJU5ENJ38W6R31YC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SCM040/1/9_SH61PZGHCPJ6CGQ0VC4SODTRTLA93Q.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SCM040:1",
                "plots": "https://api.plotly.com/v2/plots/SCM040:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=SCM040"
            },
            "owner": "SCM040",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SCM040/1/",
            "world_readable": true,
            "date_modified": "2025-09-06T11:04:28.213Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SCM040/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Evidence Strength Score",
                                "y": "Number Supporting Reviews ",
                                "text": "Theme Name",
                                "marker": {
                                    "size": "Average Quality Score ",
                                    "color": "Stakeholder Category "
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "SCM040:0:4f4866",
                        "ysrc": "SCM040:0:29867e",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "Average Quality Score ",
                                    "color": "Stakeholder Category "
                                }
                            },
                            "sizeref": 0.0014814814814814814,
                            "sizesrc": "SCM040:0:51af51",
                            "colorsrc": "SCM040:0:064234",
                            "sizemode": "area",
                            "colorscale": [
                                [
                                    0,
                                    "#e41a1c"
                                ],
                                [
                                    0.125,
                                    "#377eb8"
                                ],
                                [
                                    0.25,
                                    "#4daf4a"
                                ],
                                [
                                    0.375,
                                    "#984ea3"
                                ],
                                [
                                    0.5,
                                    "#ff7f00"
                                ],
                                [
                                    0.625,
                                    "#ffff33"
                                ],
                                [
                                    0.75,
                                    "#a65628"
                                ],
                                [
                                    0.875,
                                    "#f781bf"
                                ],
                                [
                                    1,
                                    "#999999"
                                ]
                            ]
                        },
                        "textsrc": "SCM040:0:3d24ca",
                        "cliponaxis": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Sensory Modulation Evidence Themes"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.7805063130171728,
                            3.2287595963707396
                        ],
                        "title": {
                            "text": "Evidence Strength Score"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7514799703043031,
                            9.264815735241
                        ],
                        "title": {
                            "text": "Number of Supporting Reviews"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "title": {
                            "text": "Stakeholder Categories <br>1=Patient Outcomes, 2=System Changes, 3=Staff Experiences, 4=Implementation, 5=Clinical Outcomes, 6=Professional Roles"
                        }
                    },
                    "autosize": true,
                    "colorway": [
                        "#8dd3c7",
                        "#ffffb3",
                        "#bebada",
                        "#fb8072",
                        "#80b1d3",
                        "#fdb462",
                        "#b3de69",
                        "#fccde5",
                        "#d9d9d9",
                        "#bc80bd",
                        "#ccebc5",
                        "#ffed6f"
                    ],
                    "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
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SCM040",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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": "2025-09-06 04:07:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SCM040",
                "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": "2025-09-06T03:38:43.276100Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fmichael1/1.embed",
            "fid": "fmichael1:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fmichael1/1/9_J21GVLS98HXRM9FDHQP2R4ZMCDQS0P.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fmichael1/1/2_CF0GQCX26UE2IXCS9Z5MNIXERNPN90.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fmichael1/1/8_WL192Z4SPCIDMF8A30HL8WZI5A4EJV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fmichael1/1/9_J21GVLS98HXRM9FDHQP2R4ZMCDQS0P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fmichael1:1",
                "plots": "https://api.plotly.com/v2/plots/fmichael1:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=fmichael1"
            },
            "owner": "fmichael1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~fmichael1/1/",
            "world_readable": true,
            "date_modified": "2025-09-06T03:50:52.196Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fmichael1/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x",
                                "y": "Trace 0, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Edinburgh",
                        "type": "scatter",
                        "xsrc": "fmichael1:0:859392",
                        "ysrc": "fmichael1:0:dfeb60"
                    },
                    {
                        "line": {
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 1, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Uppsala",
                        "type": "scatter",
                        "xsrc": "fmichael1:0:180d17",
                        "ysrc": "fmichael1:0:48b4bf"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15
                    },
                    "title": {
                        "text": "Pressure reactivity as a guide in the treatment of CPP in patients with TBI (T. Howells, et al., 2005)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.39283388671088504,
                            0.5963330443551249
                        ],
                        "title": {
                            "text": "MAP/ICP slope"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1
                        ],
                        "title": {
                            "text": "Probability of favorable outcome"
                        },
                        "autorange": false
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fmichael1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-06 03:32:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fmichael1",
                "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": "2025-09-06T01:52:49.172569Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hoapenncho/11.embed",
            "fid": "hoapenncho:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hoapenncho/11/9_6TPB1UZZDRBRQSOJ2E3QS3NVQC1RNU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hoapenncho/11/2_1GJIM2CAM5A0TH6T2HGOMYLSJYTWRH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hoapenncho/11/8_E11C7DYJ1KYDW4C2LKVJZK14SB7I44.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hoapenncho/11/9_6TPB1UZZDRBRQSOJ2E3QS3NVQC1RNU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hoapenncho:11",
                "plots": "https://api.plotly.com/v2/plots/hoapenncho:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=hoapenncho"
            },
            "owner": "hoapenncho",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hoapenncho/11/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:52:49.183Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hoapenncho/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x",
                                "y": "Trace 0, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "hoapenncho:10:d4eeeb",
                        "ysrc": "hoapenncho:10:371f62"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 1, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "hoapenncho:10:9aa5ee",
                        "ysrc": "hoapenncho:10:7c1d45"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 2, x",
                                "y": "Trace 2, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "hoapenncho:10:da6021",
                        "ysrc": "hoapenncho:10:07cbe6"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -77.7511961722488,
                            632.3763955342903
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -154.051172707889,
                            2351.279317697228
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hoapenncho",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.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": "2025-08-21 07:08:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hoapenncho",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}