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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA3LTA4KzEyJTNBMzQlM0EyMC4xNzM4NDElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wNy0wOCsxMyUzQTU0JTNBNDkuNDA0OTIzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-08T13:54:49.404923Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~erica.nascimento/11.embed",
            "fid": "erica.nascimento:11",
            "filename": "Pop por municipio",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/erica.nascimento/11/9_PAHIJM5Y4HZJGPHEL1X3YVYVSP7DYU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/erica.nascimento/11/2_0FBSUJP84WHX87Q8GBD9J26CQGFJ1W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/erica.nascimento/11/8_5HB1RXH5E4SMHFRW47F3EVGXWHKFGB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/erica.nascimento/11/9_PAHIJM5Y4HZJGPHEL1X3YVYVSP7DYU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/erica.nascimento:11",
                "plots": "https://api.plotly.com/v2/plots/erica.nascimento:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=erica.nascimento"
            },
            "owner": "erica.nascimento",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~erica.nascimento/11/",
            "world_readable": true,
            "date_modified": "2025-07-08T18:59:19.129Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~erica.nascimento/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Município",
                                "y": "População",
                                "labels": "Município",
                                "values": "Total"
                            }
                        },
                        "mode": "lines",
                        "name": "trace 0",
                        "type": "bar",
                        "xsrc": "erica.nascimento:7:e9eee9",
                        "ysrc": "erica.nascimento:6:a7a2b1",
                        "visible": true,
                        "boxpoints": false,
                        "labelssrc": "erica.nascimento:7:e9eee9",
                        "valuessrc": "erica.nascimento:7:b839cb",
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "<b>Municípios do PR com população quilombola</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            8.5
                        ],
                        "title": {
                            "text": ""
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            183.1578947368421
                        ],
                        "title": {
                            "text": ""
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "colorway": [
                        "#1b9e77",
                        "#d95f02",
                        "#7570b3",
                        "#e7298a",
                        "#66a61e",
                        "#e6ab02",
                        "#a6761d",
                        "#666666"
                    ],
                    "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": "x",
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~erica.nascimento",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-07 18:18:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "erica.nascimento",
                "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-07-08T13:54:42.232775Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/42.embed",
            "fid": "LSU_CLIMATE2023:42",
            "filename": "chantal_1_gage_locations",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/42/9_JC7VJTYD3DHF3RK4ZX6MTUOAF3SLGI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/42/2_MHFLLQES2XIMH1YL9Q3FWN3D2ILXHY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/42/8_8EGCVV6FS9LWQKQYEKMZCOEDQFCDNA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/42/9_JC7VJTYD3DHF3RK4ZX6MTUOAF3SLGI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LSU_CLIMATE2023:42",
                "plots": "https://api.plotly.com/v2/plots/LSU_CLIMATE2023:42",
                "parent": "https://api.plotly.com/v2/folders/home?user=LSU_CLIMATE2023"
            },
            "owner": "LSU_CLIMATE2023",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 61,
            "web_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/42/",
            "world_readable": true,
            "date_modified": "2025-07-08T14:28:08.912Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/42/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Storm Surge Gages",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:45:856f7f",
                        "lonsrc": "LSU_CLIMATE2023:45:241dc5",
                        "marker": {
                            "size": 12
                        },
                        "textsrc": "LSU_CLIMATE2023:45:1758d4"
                    },
                    {
                        "line": {
                            "color": "red",
                            "width": 4
                        },
                        "mode": "lines+markers",
                        "name": "Storm Path",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:45:b207a3",
                        "lonsrc": "LSU_CLIMATE2023:45:0ca1da",
                        "marker": {
                            "size": 12,
                            "color": "rgb(242, 17, 17)",
                            "symbol": "circle-dot",
                            "opacity": 0.9
                        },
                        "textsrc": "LSU_CLIMATE2023:45:f7447a"
                    },
                    {
                        "line": {
                            "color": "orange"
                        },
                        "mode": "lines+markers",
                        "name": "Forecast Path",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:45:7a038a",
                        "lonsrc": "LSU_CLIMATE2023:45:abaf77",
                        "marker": {
                            "size": 12,
                            "color": "rgb(242, 17, 17)",
                            "symbol": "x-dot",
                            "opacity": 0.3
                        }
                    }
                ],
                "layout": {
                    "width": 800,
                    "height": 600,
                    "mapbox": {
                        "zoom": 5,
                        "center": {
                            "lat": 33.918999400000004,
                            "lon": -78.25033260000001
                        },
                        "accesstoken": "pk.eyJ1Ijoic3JjYyIsImEiOiJlTGVCUUZJIn0.wtVBLySJsD08rO1jtAQNJg"
                    },
                    "margin": {
                        "b": 10,
                        "l": 10,
                        "r": 10,
                        "t": 40,
                        "pad": 2
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "closest"
                }
            },
            "height": 600,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2023-08-27 23:31:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LSU_CLIMATE2023",
                "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-07-08T13:27:35.340508Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sanazafsharian/25.embed",
            "fid": "sanazafsharian:25",
            "filename": "Air flow",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/25/9_QLNVL6S5TC2CVHA4GCDLA5S1CIHZQF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/25/2_Y1PBMSRBTQ6ZU76DIQCBXPXY684U6F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/25/8_DMLVAH2KI6X8H76TP6LCJ9DL1520S7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/25/9_QLNVL6S5TC2CVHA4GCDLA5S1CIHZQF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sanazafsharian:25",
                "plots": "https://api.plotly.com/v2/plots/sanazafsharian:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=sanazafsharian"
            },
            "owner": "sanazafsharian",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~sanazafsharian/25/",
            "world_readable": true,
            "date_modified": "2025-07-18T10:57:44.094Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sanazafsharian/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b4b9de",
                        "line": {
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "Air flow (ml/min)",
                                "error_y": {
                                    "array": "error 1"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Elastic strain (CD)",
                        "type": "scatter",
                        "xsrc": "sanazafsharian:24:97edc4",
                        "ysrc": "sanazafsharian:24:a94165",
                        "marker": {
                            "size": 10
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 1"
                                }
                            },
                            "type": "data",
                            "color": "rgb(18, 19, 36)",
                            "width": 3,
                            "visible": true,
                            "arraysrc": "sanazafsharian:24:1cb5e0",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "ebbec4",
                        "line": {
                            "dash": "dot",
                            "color": "rgb(10, 28, 242)",
                            "width": 6
                        },
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "b4b9de",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.21904678398825123,
                                        "value": -1.3720530511232671
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 194.6492615052117,
                                        "value": 1381.5644527023626
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.52,
                        "font": {
                            "size": 38
                        },
                        "text": "<b>Air permeability in comparison to acheievd area of MFC-coated configurations</b>"
                    },
                    "width": 1600,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            750.612481796151,
                            1006.3104257300447
                        ],
                        "title": {
                            "font": {
                                "size": 34
                            },
                            "text": "<b>Achieved area (mm²)</b>"
                        },
                        "mirror": "ticks",
                        "showline": true,
                        "tickfont": {
                            "size": 30
                        },
                        "autorange": true,
                        "gridcolor": "rgb(235, 240, 248)",
                        "linecolor": "rgb(89, 91, 93)",
                        "tickangle": 45,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            9.457421647554241,
                            349.5089886964694
                        ],
                        "title": {
                            "font": {
                                "size": 34
                            },
                            "text": "<br><b>Air flow (ml/min)<br>\n</b> &nbsp;&nbsp;"
                        },
                        "mirror": "ticks",
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true,
                        "gridcolor": "rgb(235, 240, 248)",
                        "linecolor": "rgb(89, 91, 93)",
                        "showspikes": false
                    },
                    "bargap": 0.5,
                    "height": 1000,
                    "legend": {
                        "x": -0.09637843433069629,
                        "y": -0.7459969636407836,
                        "font": {
                            "size": 40,
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "<br>"
                        },
                        "orientation": "h"
                    },
                    "margin": {
                        "pad": 0
                    },
                    "autosize": false,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 765.9828285356697,
                            "y": 291.8216692865421,
                            "ax": 106,
                            "ay": 80,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "Uncoated paperboard"
                        },
                        {
                            "x": 813.254584897789,
                            "y": 296.15906172339305,
                            "ax": 75,
                            "ay": -68,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "MFC-F 1x"
                        },
                        {
                            "x": 879.0973884021694,
                            "y": 217.2185193727055,
                            "ax": 67,
                            "ay": -54,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "+ MFC-C 1x"
                        },
                        {
                            "x": 938.1870838548184,
                            "y": 122.22962500566932,
                            "ax": 81,
                            "ay": -69,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "MFC-F 2x"
                        },
                        {
                            "x": 952.3686107634542,
                            "y": 30.71064458811394,
                            "ax": -115,
                            "ay": -53,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "+ MFC-C 2x"
                        },
                        {
                            "x": 967.3832760565266,
                            "y": 43.72246232209173,
                            "ax": 75,
                            "ay": -92,
                            "font": {
                                "size": 25,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "MFC-C 1x + MFC-F 1x"
                        },
                        {
                            "x": 846.8289179168559,
                            "y": 165.02224935686903,
                            "ax": -85,
                            "ay": 68,
                            "font": {
                                "size": 30,
                                "color": "rgb(27, 27, 27)",
                                "family": "Arial"
                            },
                            "text": "<b>y= 1.37 x + 1381.6</b><br><b>R² = 0.91</b>",
                            "showarrow": false
                        }
                    ],
                    "bargroupgap": 0.15,
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 1000,
            "width": 1600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sanazafsharian",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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-05-30 11:17:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sanazafsharian",
                "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-07-08T13:20:41.858773Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aaron0627/22.embed",
            "fid": "Aaron0627:22",
            "filename": "PPR proteins WI",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aaron0627:22/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/22/2_B7O3UVOB6W7WQ5PJ4RX01YTY2M7RZM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/22/8_DMTJ57Y8YCS7O89GHHSVDRB64D7ZFE.png",
                "list-thumb": "https://api.plotly.com/v2/files/Aaron0627:22/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aaron0627:22",
                "plots": "https://api.plotly.com/v2/plots/Aaron0627:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aaron0627"
            },
            "owner": "Aaron0627",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Aaron0627/22/",
            "world_readable": true,
            "date_modified": "2025-07-08T13:20:41.869Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aaron0627/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "A",
                                "values": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "pie",
                        "textinfo": "label+percent",
                        "direction": "counterclockwise",
                        "labelssrc": "Aaron0627:21:d59838",
                        "valuessrc": "Aaron0627:21:fac5e4",
                        "textposition": "auto",
                        "insidetextorientation": "auto"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "PPR proteins WI"
                    },
                    "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/~Aaron0627",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 06:08:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aaron0627",
                "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-07-08T13:01:01.648315Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/37.embed",
            "fid": "LSU_CLIMATE2023:37",
            "filename": "chantal__gage_locations",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/37/9_O3BM5GUQO00XTSP62FRD747R3HN5I1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/37/2_JWLAW29A9K7PZKLVXZ19CHOQOKMQPH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/37/8_RHM5NNVJSFTCBSP5OLYLJT5PNS70EE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LSU_CLIMATE2023/37/9_O3BM5GUQO00XTSP62FRD747R3HN5I1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LSU_CLIMATE2023:37",
                "plots": "https://api.plotly.com/v2/plots/LSU_CLIMATE2023:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=LSU_CLIMATE2023"
            },
            "owner": "LSU_CLIMATE2023",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 778,
            "web_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/37/",
            "world_readable": true,
            "date_modified": "2025-07-09T15:26:04.417Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Storm Surge Gages",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:56:8c8c15",
                        "lonsrc": "LSU_CLIMATE2023:56:2edb01",
                        "marker": {
                            "size": 12
                        },
                        "textsrc": "LSU_CLIMATE2023:56:96f35b"
                    },
                    {
                        "line": {
                            "color": "red",
                            "width": 4
                        },
                        "mode": "lines+markers",
                        "name": "Storm Path",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:56:9aaa83",
                        "lonsrc": "LSU_CLIMATE2023:56:78e565",
                        "marker": {
                            "size": 12,
                            "color": "rgb(242, 17, 17)",
                            "symbol": "circle-dot",
                            "opacity": 0.9
                        },
                        "textsrc": "LSU_CLIMATE2023:56:bece78"
                    },
                    {
                        "line": {
                            "color": "orange"
                        },
                        "mode": "lines+markers",
                        "name": "Forecast Path",
                        "type": "scattermapbox",
                        "latsrc": "LSU_CLIMATE2023:56:182b71",
                        "lonsrc": "LSU_CLIMATE2023:56:4a8571",
                        "marker": {
                            "size": 12,
                            "color": "rgb(242, 17, 17)",
                            "symbol": "x-dot",
                            "opacity": 0.3
                        }
                    }
                ],
                "layout": {
                    "width": 800,
                    "height": 600,
                    "mapbox": {
                        "zoom": 5,
                        "center": {
                            "lat": 33.918999400000004,
                            "lon": -78.25033260000001
                        },
                        "accesstoken": "pk.eyJ1Ijoic3JjYyIsImEiOiJlTGVCUUZJIn0.wtVBLySJsD08rO1jtAQNJg"
                    },
                    "margin": {
                        "b": 10,
                        "l": 10,
                        "r": 10,
                        "t": 40,
                        "pad": 2
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "closest"
                }
            },
            "height": 600,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LSU_CLIMATE2023",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2023-08-27 23:31:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LSU_CLIMATE2023",
                "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-07-08T12:59:04.042589Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~malemany/21.embed",
            "fid": "malemany:21",
            "filename": "080725_Actin_to_asyn_intensity_Jurkat_pulse_n=1 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/malemany/21/9_AG9CP8VP8V9HVKQNVKM65JVAM70XAQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/malemany/21/2_E2ZVXJ8Z664DNKXCSUM3L069H3TLNO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/21/8_33V5337C2AWKEHZCH3WZI7QYSOKOT5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/21/9_AG9CP8VP8V9HVKQNVKM65JVAM70XAQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/malemany:21",
                "plots": "https://api.plotly.com/v2/plots/malemany:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=malemany"
            },
            "owner": "malemany",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~malemany/21/",
            "world_readable": true,
            "date_modified": "2025-07-08T13:45:42.208Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~malemany/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "Untreated",
                        "type": "scatter",
                        "xsrc": "malemany:22:1dbb86",
                        "ysrc": "malemany:22:ea8298",
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 4,
                            "color": "rgb(206, 206, 206)"
                        },
                        "boxmean": false,
                        "error_x": {
                            "type": "percent",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoveron": "boxes+points",
                        "notched": false,
                        "meanline": {
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)",
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "G"
                            }
                        },
                        "mode": "markers",
                        "name": "1h",
                        "type": "scatter",
                        "xsrc": "malemany:22:908e94",
                        "ysrc": "malemany:22:84e1cc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 4,
                            "color": "rgb(165, 89, 170)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(250, 250, 250)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "H"
                            }
                        },
                        "mode": "markers",
                        "name": "6h",
                        "type": "scatter",
                        "xsrc": "malemany:22:6b2505",
                        "ysrc": "malemany:22:9d43fc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 4,
                            "color": "rgb(92, 213, 196)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "I"
                            }
                        },
                        "mode": "markers",
                        "name": "18h",
                        "type": "scatter",
                        "xsrc": "malemany:22:d6dead",
                        "ysrc": "malemany:22:8a2a6f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 4,
                            "color": "rgb(255, 199, 92)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "J"
                            }
                        },
                        "mode": "markers",
                        "name": "24h",
                        "type": "scatter",
                        "xsrc": "malemany:22:5e89d2",
                        "ysrc": "malemany:22:03ef1d",
                        "marker": {
                            "line": {
                                "color": "rgb(4, 4, 4)",
                                "width": 1
                            },
                            "size": 4,
                            "color": "rgb(255, 49, 60)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -256043.9830946438,
                            4242866.489094644
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "a-synuclein average fluorescense intensity"
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(0, 0, 0)",
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -63439155.04043904,
                            1069845085.040439
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Actin average fluorescence intensity"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(216, 217, 219)",
                        "gridwidth": 0,
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "rgb(0, 0, 0)"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "boxmode": "overlay",
                    "autosize": true,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ]
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~malemany",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-17 15:39:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "malemany",
                "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-07-08T12:50:59.127890Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~malemany/19.embed",
            "fid": "malemany:19",
            "filename": "080725_asyn_intensity_Jurkat_pulse_n=1 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/malemany/19/9_C0J4GTRA9X9W141MX4R54D0B6976C8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/malemany/19/2_18K9GXSJ3BOBIC1957XBTPD2870ZGD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/19/8_IMT9VWEZMZ2KSU267Q59WO7HHTHM26.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/19/9_C0J4GTRA9X9W141MX4R54D0B6976C8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/malemany:19",
                "plots": "https://api.plotly.com/v2/plots/malemany:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=malemany"
            },
            "owner": "malemany",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~malemany/19/",
            "world_readable": true,
            "date_modified": "2025-07-08T13:56:36.306Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~malemany/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Untreated",
                        "type": "box",
                        "xsrc": "malemany:23:7b911e",
                        "ysrc": "malemany:23:e56d1f",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(10, 10, 10)"
                        },
                        "boxmean": false,
                        "error_x": {
                            "type": "percent",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoveron": "boxes+points",
                        "notched": false,
                        "meanline": {
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)",
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "1h",
                        "type": "box",
                        "ysrc": "malemany:23:a13ea7",
                        "marker": {
                            "color": "rgb(8, 8, 8)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(250, 250, 250)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "6h",
                        "type": "box",
                        "ysrc": "malemany:23:49863c",
                        "marker": {
                            "color": "rgb(10, 10, 10)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "18h",
                        "type": "box",
                        "ysrc": "malemany:23:d95624",
                        "marker": {
                            "color": "rgb(15, 15, 15)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "24h",
                        "type": "box",
                        "ysrc": "malemany:23:737dc4",
                        "marker": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": "outliers",
                        "fillcolor": "rgb(255, 255, 255)"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": ""
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(0, 0, 0)",
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -221490.1392222222,
                            4208312.645222222
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(216, 217, 219)",
                        "gridwidth": 0,
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "rgb(0, 0, 0)"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "boxmode": "overlay",
                    "autosize": true,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ]
                    },
                    "showlegend": false,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~malemany",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-17 15:39:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "malemany",
                "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-07-08T12:48:48.600671Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jvovk/1.embed",
            "fid": "jvovk:1",
            "filename": "Navor po kotu 1-3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jvovk/1/9_41G5QAJH3XKHRSH8UV3VT9EH35VRZZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jvovk/1/2_9VWOA2LN2L7TDKYNFSGVUDKMSX46O1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jvovk/1/8_1AK3693HCV754JJ1MDQH6FAJAHP4G6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jvovk/1/9_41G5QAJH3XKHRSH8UV3VT9EH35VRZZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jvovk:1",
                "plots": "https://api.plotly.com/v2/plots/jvovk:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jvovk"
            },
            "owner": "jvovk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jvovk/1/",
            "world_readable": true,
            "date_modified": "2025-07-08T12:48:48.610Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jvovk/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "shape": "linear",
                            "width": 3,
                            "smoothing": 0.7000000000000001
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "Odprianje",
                        "type": "scatter",
                        "xsrc": "jvovk:0:c5a248",
                        "ysrc": "jvovk:0:833f49",
                        "marker": {
                            "line": {
                                "color": "rgb(128, 93, 129)",
                                "width": 1
                            },
                            "size": 18,
                            "color": "---"
                        },
                        "showlegend": false,
                        "connectgaps": true
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "shape": "linear",
                            "width": 3,
                            "smoothing": 0.7000000000000001
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "Zapiranje",
                        "type": "scatter",
                        "xsrc": "jvovk:0:c5a248",
                        "ysrc": "jvovk:0:43c874",
                        "marker": {
                            "line": {
                                "color": "rgb(128, 93, 129)",
                                "width": 1
                            },
                            "size": 18,
                            "color": "---"
                        },
                        "showlegend": false,
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Navor P1-3 po kotu pri odpiranju in zapiranju"
                    },
                    "xaxis": {
                        "range": [
                            40,
                            89.5
                        ],
                        "title": {
                            "text": "Kot [°]"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            3.740628047509898
                        ],
                        "title": {
                            "text": "Navor [Nm]"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "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/~jvovk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 12:45:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jvovk",
                "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-07-08T12:37:00.827220Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~malemany/17.embed",
            "fid": "malemany:17",
            "filename": "080725_Mitochondria_intensity_Jurkat_pulse_n=1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/malemany/17/9_CCMD49KHQYXV7O0V3K7E7OD9S2CHO0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/malemany/17/2_GP42MVMT25PUCOEUS3JUDCNIEDTDTX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/17/8_4VW5R68B254Z022ITP24RXQ997X9IU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/malemany/17/9_CCMD49KHQYXV7O0V3K7E7OD9S2CHO0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/malemany:17",
                "plots": "https://api.plotly.com/v2/plots/malemany:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=malemany"
            },
            "owner": "malemany",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~malemany/17/",
            "world_readable": true,
            "date_modified": "2025-07-08T13:50:22.648Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~malemany/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Untreated",
                        "type": "box",
                        "xsrc": "malemany:16:252eb5",
                        "ysrc": "malemany:16:c15711",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(10, 10, 10)"
                        },
                        "boxmean": false,
                        "error_x": {
                            "type": "percent",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoveron": "boxes+points",
                        "notched": false,
                        "meanline": {
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)",
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "1h",
                        "type": "box",
                        "ysrc": "malemany:16:ba4c93",
                        "marker": {
                            "color": "rgb(8, 8, 8)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(250, 250, 250)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "6h",
                        "type": "box",
                        "ysrc": "malemany:16:378a2e",
                        "marker": {
                            "color": "rgb(10, 10, 10)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "18h",
                        "type": "box",
                        "ysrc": "malemany:16:d1bc0d",
                        "marker": {
                            "color": "rgb(15, 15, 15)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "24h",
                        "type": "box",
                        "ysrc": "malemany:16:4cf979",
                        "marker": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgb(255, 255, 255)"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "<br>"
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "rgb(0, 0, 0)",
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -44456169.44444442,
                            1050862099.4444443
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Mitochondrial average fluorescence intensity (A.U)"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "rgb(216, 217, 219)",
                        "gridwidth": 0,
                        "linecolor": "rgb(0, 0, 0)",
                        "zerolinecolor": "rgb(0, 0, 0)"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "boxmode": "overlay",
                    "autosize": true,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ]
                    },
                    "showlegend": false,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~malemany",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-17 15:39:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "malemany",
                "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-07-08T12:34:20.173841Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~IvanovDV18/10.embed",
            "fid": "IvanovDV18:10",
            "filename": "Plot 10",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/IvanovDV18/10/9_VL1X24YM0HCRAWL2O66BJ29Z7YNRAP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/IvanovDV18/10/2_OI0CQBWB31MPK1TEK8NHBWE80O0JRC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/IvanovDV18/10/8_MRSFKJE1N2NV0HPD3HS229CK3N27OH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/IvanovDV18/10/9_VL1X24YM0HCRAWL2O66BJ29Z7YNRAP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/IvanovDV18:10",
                "plots": "https://api.plotly.com/v2/plots/IvanovDV18:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=IvanovDV18"
            },
            "owner": "IvanovDV18",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~IvanovDV18/10/",
            "world_readable": true,
            "date_modified": "2025-07-11T14:14:19.141Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~IvanovDV18/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Дата",
                                "y": "201_TZT02"
                            }
                        },
                        "mode": "lines",
                        "name": "Т02/2 TZT02 (выход)",
                        "type": "scatter",
                        "xsrc": "IvanovDV18:20:ad7a75",
                        "ysrc": "IvanovDV18:20:af8b4f",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Дата",
                                "y": "204_01TZT01"
                            }
                        },
                        "mode": "lines",
                        "name": "Выход из 201 (TZT01)",
                        "type": "scatter",
                        "xsrc": "IvanovDV18:20:ad7a75",
                        "ysrc": "IvanovDV18:20:6ed446",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Дата",
                                "y": "203_02TT01"
                            }
                        },
                        "mode": "lines",
                        "name": "02TT01 (перед Leprost)",
                        "type": "scatter",
                        "xsrc": "IvanovDV18:20:ad7a75",
                        "ysrc": "IvanovDV18:20:6f4a42",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Дата",
                                "y": "203_05TT01"
                            }
                        },
                        "mode": "lines",
                        "name": "Вода из Т-04",
                        "type": "scatter",
                        "xsrc": "IvanovDV18:20:ad7a75",
                        "ysrc": "IvanovDV18:20:7ea3f3",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12
                    },
                    "title": {
                        "font": {
                            "size": 19
                        },
                        "text": "Блок 201. ВОЦ"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2025-07-04 15:08",
                            "2025-07-11 15:51"
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Дата"
                        },
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": true,
                        "gridwidth": 2,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                "2025-07-04 15:08:56",
                                "2025-07-07 14:25:36"
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinewidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            15.751166666666666,
                            303.7078333333333
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 17
                            },
                            "text": "Температура, С"
                        },
                        "nticks": 16,
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": "2025-07-08 09:53:57.8194",
                            "y": 62.01819739952719,
                            "ax": -77,
                            "ay": -20,
                            "text": "настройка циркуляции ВОЦ"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~IvanovDV18",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 09:16:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "IvanovDV18",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}