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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE5KzA5JTNBMDAlM0E0MS4yMTk1MDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOSsxMCUzQTA5JTNBMDkuNjY2NDE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-19T10:09:09.666419Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mrbilalmalik/1.embed",
            "fid": "mrbilalmalik:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mrbilalmalik/1/9_FAQT0ULCW53EOXWNCLCIKICF65ARIT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mrbilalmalik/1/2_9EKO5KN99CWMA0W03K91FSWQWNVEDH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mrbilalmalik/1/8_BLUVG5L4WM3XM955JD7IQAZM5Q3V7B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mrbilalmalik/1/9_FAQT0ULCW53EOXWNCLCIKICF65ARIT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mrbilalmalik:1",
                "plots": "https://api.plotly.com/v2/plots/mrbilalmalik:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mrbilalmalik"
            },
            "owner": "mrbilalmalik",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mrbilalmalik/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:09:09.675Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mrbilalmalik/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Azi-Co",
                        "type": "scatter",
                        "xsrc": "mrbilalmalik:0:f01411",
                        "ysrc": "mrbilalmalik:0:53860f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Ele-Co",
                        "type": "scatter",
                        "xsrc": "mrbilalmalik:0:f01411",
                        "ysrc": "mrbilalmalik:0:47d572",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Azi-Cr",
                        "type": "scatter",
                        "xsrc": "mrbilalmalik:0:f01411",
                        "ysrc": "mrbilalmalik:0:59b00a",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Ele-Cr",
                        "type": "scatter",
                        "xsrc": "mrbilalmalik:0:f01411",
                        "ysrc": "mrbilalmalik:0:6870ba",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Normalized Gain VS Frequency"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            8.03,
                            9.97
                        ],
                        "title": {
                            "text": "Frequency (GHz)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -30.167777777777776,
                            1.587777777777778
                        ],
                        "title": {
                            "text": "Normalized Gain (dB)"
                        },
                        "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/~mrbilalmalik",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 10:08:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mrbilalmalik",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:59:37.817078Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~simon.verstraete/21.embed",
            "fid": "simon.verstraete:21",
            "filename": "Plot 7 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/21/9_VVAF7FKGXGN1SRKIMW4L0FKVRDHZBQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/21/2_14TX5IVOJMZURFN8IZOYRVND2HU1GT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/21/8_4SHGITPDZ9QFIOA5IND1QFAI1X50WK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/21/9_VVAF7FKGXGN1SRKIMW4L0FKVRDHZBQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/simon.verstraete:21",
                "plots": "https://api.plotly.com/v2/plots/simon.verstraete:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=simon.verstraete"
            },
            "owner": "simon.verstraete",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~simon.verstraete/21/",
            "world_readable": true,
            "date_modified": "2024-04-20T12:55:09.360Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~simon.verstraete/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS1_H",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS1 H",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:15:c21d58",
                        "ysrc": "simon.verstraete:15:8d478b",
                        "marker": {
                            "symbol": "circle"
                        },
                        "visible": true,
                        "hoverinfo": "x+y+name",
                        "hoverlabel": {
                            "namelength": 15
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS1_V",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS1 V",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:16:9ec2c6",
                        "ysrc": "simon.verstraete:16:ce54b3",
                        "marker": {
                            "symbol": "circle-open"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS2_H",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS2 H",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:17:a4db5d",
                        "ysrc": "simon.verstraete:17:ce1765",
                        "marker": {
                            "symbol": "square"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS2_V",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS2 V",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:18:3ec18c",
                        "ysrc": "simon.verstraete:18:e47448",
                        "marker": {
                            "symbol": "square-open",
                            "opacity": 1
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS3_H",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:19:c5335c",
                        "ysrc": "simon.verstraete:19:d8572c",
                        "marker": {
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS3_V",
                                "y": "Tensile strain at Maximum Force [%]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 V",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:20:a26994",
                        "ysrc": "simon.verstraete:20:b2a809",
                        "marker": {
                            "symbol": "diamond-open"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS4-H",
                                "y": "Tensile Strain at Maximum force "
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:22:ec4af3",
                        "ysrc": "simon.verstraete:22:17f73e",
                        "marker": {
                            "symbol": "cross"
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "SS4-V",
                                "y": "Tensile Strain at maximum Force"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 V",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:23:6f6728",
                        "ysrc": "simon.verstraete:23:4d2c6f",
                        "marker": {
                            "color": "rgb(224, 100, 5)",
                            "symbol": "cross-open"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 11
                    },
                    "title": {
                        "x": 0.48,
                        "text": "Tensile Strain at Maximum Force"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -1,
                            63.76833976833977
                        ],
                        "tick0": -1,
                        "ticks": "",
                        "title": {
                            "text": "Percentage Core [%]"
                        },
                        "nticks": 0,
                        "tickson": "boundaries",
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11
                        },
                        "tickmode": "linear",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "rgb(212, 212, 212)",
                        "gridwidth": 2,
                        "linecolor": "rgb(0, 0, 0)",
                        "tickangle": 45,
                        "automargin": true,
                        "fixedrange": false,
                        "showspikes": false,
                        "ticksuffix": "%",
                        "rangeslider": {
                            "range": [
                                -3.1401666223522104,
                                56.14016662235221
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "zerolinewidth": 1,
                        "showticklabels": false,
                        "spikethickness": 18,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 29,
                        "range": [
                            0,
                            15
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Tensile Strain [%]"
                        },
                        "mirror": false,
                        "nticks": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "rgb(181, 181, 181)",
                        "gridwidth": 1,
                        "linecolor": "rgb(0, 0, 0)",
                        "fixedrange": false,
                        "showspikes": false,
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "zerolinewidth": 1,
                        "separatethousands": false
                    },
                    "images": [
                        {
                            "x": -0.39000000000000057,
                            "y": 1.0399999999999991,
                            "xref": "x",
                            "yref": "y",
                            "sizex": 9.7,
                            "sizey": 5.3100000000000005,
                            "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAnIAAAB+CAYAAACgc/zHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAACvMSURBVHhe7Z0JnE3lG8efUigVkSUkIqSQXfZdZMkuZMu+G8bYDcY29jX7mj1K1oTKvi9D2bXIn6iIsjP/83vmnJk716ylmXvO/X37+My5516a555z3vf3Pu+zPBFsIIQQQgghxHY8af4khBBCCCE2g0KOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYR4CKfO/SKTZn9mviIkeijkCPEwfvrlVwkODjZfEW/l5wuXzSPiLZz54YI07zpCPp6/SkZMXmyeJSRqEvgbmMeEeAQfdhwiB4+elj9v/C3pXk4piRI+bb7jfG7euiOlanWWecu/lB9+vigpkieVNKmSm+8Sb2H9lj3S0neU/Hn9bylWMKd5ljidh8YCbv3Xe+Ta9b/kyPdn5a+/b/H6k2h5wlj5e9TS/++bt+XrnYd0Iv/j6nVJ9VIyyZcrq5Qrnl8SJKAD0en89sefUrJmZ/OVyNNPJZA6VUtJ+6Y1JFnS58yzzuXk2fNS86N+5qsQyhXPJz07NpSXKei8AnhjXLfWGtepKH7tPzBfEaeDMbBJ52Hy4/lL+tpbrv/Dh8GybPXXsnTVFjn300VJlOhpyZUjs9SpUlIqlCwgTzzxhPlJ4o7HCLmbt27LzEVrZd6yL+X2nbvm2TBeSZtKAvu21gvrZHbt/05eTPa8pH85pTyX5BnzrPdw9c8bMnPhWjlx5mfZf+Sk3H/wQM+nePEFmRDQSd5+M4u+dioYzI6f/kl27Dsqn675Vi5c+k3PQ8RONOzPmzOrvibO4+7de9Jv5GxZ89Uu80wY3jKZX/vzL9l35ISGF9y9d19SGGNhzjdekxxZM5qf8A68Tczdu/9AOvWdIFt3HzHPhKdgnuwysl9beSl5UvMMccUjhNy+wyekR8BUufzbNfOMyJNPPiEvp0oh1/+6KTeMP+Dpp5+SUf3bqofCieBS5KnQUu4ZAxhI+nwS3VpM//JLkjbNSyruqlcsKs8+k1jfdzrYVlr0+SaZZQj8W7fv6vWfOtxHCufLYX7C2UDUfbr2Wxk9daluscD+j4d1lXfyv2l+gjgFLGAwkWEnAryW4WUZ6Ntc+gXO8orJHIu2WYvXyfa9QXrfu5MhXWpp07iaVKtQxGs8M94k5gInL9ZwEoD5rUq5wsbiPakEHT9rLGqP6fl0xhw4Z1xP/UnCE+9CbsbCNTJh1orQhzd1yhelVaOq+sDiguL8NzsPycAx8/TGTpwooSya0k+yZX5FP+8kfr1yVcrU6Wq+ihh4ZKYF+niNmAMIAG7ba6z879Jv6qVcMXOQilpv4dzPF6VNj9HqnUvybGJZPn2gvJo+tfkusTtnf/qftOs5Vn65eEVfF8n/lozxbyfPP/es4ydzLN4Dxs+XzdsOmmdCQBgNxnrszjx48NA8K1I4bw4J7NdGPfTegDeIOdwDmPcgRV5OnULmj++ljguLvYdOSFf/SeqtzWQscJZ83N8rd6uiIt6EHARawPgFuh9uUadKKfFtV18nK3cwidVpNUC9NHiYZ43pYb7jLLC9csV4eCHqrvx+zXiQr8nW3UHGSvWovo+YsekjfdXV7E0ggw/XH56pEoVzy8fDoxa8TuP8/y5L3Vb+6qFGzOj8Cb3Nd7wDxM6e+fGCnDp3Xie3Fg2q6LNgdxBK0dV/cuiuQ/3qZaRXp4byVIIw25w6mWMbrefQ6TqmA1zPd8sU0nngzWwZVchhd+JA0ClZsGKjsaA/rJ/DIm7maF8Nt/EGnC7mFq78SoZOWKjHs8f6SaE8b+ixKyjJ0rB9gIZg4f7w797UfIeAeMlaxQrLb8g0+XzDdn2NLaNBvs2kbZPqktA4jogXjNXp80melW93HdGVa9Xy70jSF5wX/J7AGMBhK1YmWTKm09XKnKXrDeH7UAe6MQM7eGUWU9IXkujP3Qe/1/gZp17/yMA2+zOJE8q2PUfl4q+/S5H8b2rogdNArMy5n/6n13nd5t06gY+b8amMmbZMVqzdqpM5Vugnz5yX8iULSIIn7ZsAhfGv28Ap6nVCKIlf+wbS8aOaxnF4m+B9r1iqgNrulGzGuUs3SJ8Rs0LjobE4mRbYXWpXKSlpjbHvKVOkwzOXPm1Kea9sYXnj9VeN8f+w/H71un4XlQzR5w07E068/q6s3bRbgo6fk+TJnpd+XRubZ8MDDyzGPzg0Tpz5SWq8W1w91iSEeBkFB46Zq+n1ABcHcU81KhXX11FRplhe80iMi3nePHIuGOi7Dpikq1JLxJUpmsd81/uAJ84CMTXexrulC5lH8GYEmUf2BBsB8LIjQx3hFb6DP5bqzfpI/oqt5P1mfaXH4Kl6HpMXttSx2EPQuwX+3votu81X9uTYiR9Ctw27tqojH9auoMcRgSDveeN7ScZX0ujr+cu/1LgiOzJ66jIZ+fGS0FqJ7YwFvKttkYGxD55obKthMY97JJ42lOKciK6/U+rMJXw6pLwUYuKiomblEhofid28LTvCb8V7O3Eu5CbOXqkra4CVxszRPWIcvP70U2Heutt37phHzmTJqi3SZ/hMvWkp4kJwHbSxMnUCSOJo2X2UbPx2v3kmcrDosbh0+Q/zyB4gCxlbKANGzZEP2g2WgpXbSoX63aVD7/HqcVu3eY/GQiJLGfd71tfSqxemS8vaMssYI76YO0RuG9+VRYsG70m1CkXNV/akaoUi6mkFE2at1Gc+Ktwn89eN78huYPyfvWSd+UqkSrl35JV0qdTTghio6IBXbvSAdnqcNfMrXlWSwrr+iBMDdhZzrnGPuP4A4SNWlYKIQMiVNQZiV4aEEacxctv2BEkbvzF6nDDh0zJtRLdYxXphW6mN32g9RowcYuWcCAb0wWPn6zFFXBhT5q2SyXNC6msh4BkTvd1BEs+yL77WLaTAvm3k3dIFzXce5ctv9oqP/xQ9blKnovSwSZzMlh2HxAee5fuPDtLIQMv62isqSl7PlF4FXMYMacLFiGHQ/qhboG4pA4g4eLCcwKUrfxjfzWTdLgPN6leSbq3rRilQEDN1IOikVCwV+b3iiWAB33/kbPPVo2BOQPwTxPuzzyQyz0YMPLKli3jPmIgF/d5Dx2XVlztk07b9WjgcQNwh+Qs/PRkItOWrv5HP1m/TsAi8xnbpW9kzyavp06goBZHFyAEsBmu16K/HThoDHgdxJuQQ11C9aR9NswdjDXFSoWR+PY4pHfuM10kBQbDbV00K56FwChRxEYPaauj4AA8WBvwty8fIi0mfN9+1L39cuyHNug5XbxQmb0xizetX1pgpV36+8Kth/1CdxIFdFjKIgXq3QQ9N3AHINm9Qo5wKtiyZ0kUb43T2xwvS3Ccw1G4nDuAInYD3fe3mkK3ilg2r6H3gJBCoj0LXd+7e09fYJqtUpqCkTJFMLlz8zRAnB2TNVztV7OPemDLchwWwDZCx/oUh3r7YuEMT4FxBsseU4V21VI0ng0Sedr3GhpbWiQqEWAX4fWS+CgPeWnQ6+f7Uj/p65ihflmFyIc6EHMSJtXWA8iKdW9TS45iyx1iNoAcdQJAr6sk5DYq4iEFpgt7DZ2iAL2jbuLp0aF5Dj50AxFyjDgGh2wXZs2SQhjXLSa43MsuDhw9122nmwjWasQqKF8olU0f46LEdQMYZxCoGYwjUYb1b6ZZadODv4Zm3Fn9OXoXD4+LjP1m+2hqyxT7Gv70GuDuFxp2GavYpiMybDo9LB2OxDs9r5ozpZNHkvl5bFB2hBhBwx07+YJ4NAU6MciXyqeCB58rTt5ZxX7fqMUqzswEKmzc0FnI5jbEN/PTLJdl14DvZYYxxlsceGctli+ULzVxGLTk0CrAWc06uWvFPiRMhhwcTq3K4UzFJLZ02INzWSXRgAkPpBeyh48b9fHaAruadBEVceHCtkdCAhA/XxIayxfPKWP8OtmjXhpUoSmbkeet180zkaHmdlgO0v2xUoMI9BjFkNtuJ2Io5p4g4eCQxGcUEfBZbR/BeYdtpw6JAR2RlwhMDbzrA1nH3NvX0OCJQZqhe65AyOw1rlpfenRqa7zgbeGW/2XVYxRsSmdxjxXLnyCw1KheXSqUL2UrcwpPYa+gMPUZ84/SR3TU71R30la7apHe0yStIeELpKSfsxjxO4kTIoWI3ygeABRN7x6rNEBQ93LKIrwOR1ZCBC3rjN/t0QnwlbUpdscBtbwecKOIwMA0Z/4kKMmDdZsHGfxY4hfMIfL1//74xkd2Tv27ekqvXbuik5gom/w7NakqrRlU8fhUKIOKwFYAEHdzzMQHemC79J+lKtMDb2TWexKqxhUBfq+dsdPFDnkpMxZxTRBxKqKDMRmy8p4j9QgIIGNCtqdQ1rrndQVwc4uOw+Ni4ZFS0ZSPmLtsgI6cs0cX+9lUTHV1mIuj7sxr3hioO7os4xL0hoQcCztO3TyOjaZfh2rkpUcKnZd3CEZImZeTb5Yh/Rxw8PgOvIxYACClB6a1smTOoh/qDGmVj5QTyFuJEyFkXE944BGbGhoGj58qy1d/oMarZfzpjYLhVKrbbhk9apJ4bV1Mw8SEOr2iBt8wznsnjEnEomLr38HG5fOWqJE6cSN7MmjHevJYQZp37TdRJ6d+CwQxtyWobAj6Dmd0UEZ5kP9jw9V6tEQbmjuupwiwmNOowRA4dOy0j+rSWymULyy8XL+uWQ4a0qbQER2R4mv2REZ2Y+6ciztPsxza5FRO2et7Q0EzD6MDC9Z2q7XRcQ7kl9NeNCZ58/d/7sKd6GauUf0fv6+jA4g87OGDikM4xGg+RNHL42BmNxU71UjLJnSOL/vREsEP1xcadhoDb/kj2JeaAUkXyqCMCdeJiuvPgqfYXqdZeF6MQYQgXiAr0GEZ9WYwLWz+bECuvm52u/39BnAg5PJR4OGPrKketIaxoARIbPpnUV8WgBdyxyIK1Wttg77yIIdxQMBAxBhB8n88J8NjebI9DxGEgQEr/5u0HtSuEK8gIRpFR1+8srkB2KbJMLRDzlTb1SxrzhRUWbjtMWtYxvGwohPrMM4l05Z7qpRe1zEJ0185T7YdHsly9bhrXgS2FJVP7x2glaVU5R1LAylmDzbOR46n2R0VkYu6fiDhPtR9JOSVqdNTswvIl8su4QR3Md6KnauNeusOALF6MX1Fhh+tfoFJr/R6wpYqt1ehwbVWI3RfswkTG7gPfy+S5n8vBoyHxdxYQQFXLF5Ee7T4ILSYen0Bob/x2n3rf4NRwB9cI4g3PAeLIYoqn21+yZmcdA+tVLyP9Iyn2a4FY4eLvd9Tj8YM7xqinul2u/39NnHR2WLhyk7qN334zS4yqUWNix7bcJyu+0teYACcN7SJ5c4bFGiEwFp4+dD7AxI/kB2R64TMVShYwzl/VlH5sbaEKvqfxb0UcYijGz1whfgHTjAnwfLi6PBbYZl69cYe89mpa/ROXFEQKuXEd95nxbVgpdW9TV0q+k1uruOfLlU3y586mnip8Fj/xGvcIhA+8b1HFgXm6/RhIsKLcYkywGMieNISqfifRcOnyVS0zgu+rkbHwiSy+ytPtjwrEfyFhA3ZC8OA7SvBkAn0eYiriPN1+PNN3797X+E50qsDWGIRZdMCDN3b6crUHHQ6wnR4Rdrr+MxaulXv37+szjuc+OhAjZiV91KpcIkJvJiZ930FTZfysFXLxckhZGlcwh2CO+PKbfVLUmHPiI6YKC9Wd+7/TRW2/wNlaKxLFrS0gMGq/V1L8uzWV9k3fl1w5MkviGFZisIP9AF1YsNjAgg1dO6LimcSJZPFnmzWsBskuUe1i2MX+uCJOhBxc/vCe3TJWZfXfL2OejRgM7H5Dpoe278KEiPpariIHA1QzQ8ThYmI/fd6EXo/E3WEFtGnrAUn2wnO6ReVJ/FsRB9c8PJGIq3ho3LAAAggTXzdj1dugRlmNE0Tl+L+M7wGrdaRq47uKS1zFHGLG8HuUK5b3X8e82MV+eNUwmPxw/pLsDzqltdIyRzOhrv5qZ+jqEn03I/qu7GJ/VLiLOWSlW3GR0Yk4u9iPiXnztgMqTrfvPSYlCueKtt4XFr3oQQoQJ+TazcTCbtd/254jxmT7hy7IUQQ5KhBG4Ddkqo7t+HzvTo0eETfwaH3kExhaigIioULJguLbtp4u5qtVLCqJjAXQsRPn1IGwddcRjTWLadLJ4+LuvfsybOJC/f4hvAF+12IFc+nvOah7MylV5O1Y14Czi/0AXRvwjMOx8k6+HNp6MipmLVmn4wA8lJE5fexkf1wRJ0IODyK2Ov+4dl0zVnJmD2u14wpqRmGAwqAOECA5blBHHdAs8KC39h0tP/5ySZMZEEiO2Dl3EFyL/m3w/pSO5Xblf8m/FXHYfkIDZQhjgJXGoB7NpWeHBlrpHKs8uOZzGwN7xdIFNVYL8Ta4+VG/K64TBR63mLOT/fh/QaygPzA8bLAdnpHMGSMWcwg/QOcDbJHh++n0US0dpFyx2/WPCog59Iu1vC8AE9vgHo/WkbKwk/3oF4rtzTWbdhsLy1sq6grlfSPSJCwI+N7DZqp3Db8nPDXuk7wdrz+2VVFC58KlK1K0QM5IBSW8KP0CZ4WWqqj+brFHFuGYRxB/i6QogMXSlGFd5cPa5XUewHOD7xci4M2smWT913vk+o2bKgxdWzzGBRCiFUoVUEGNe6FZvUoyrFdLqVettPbRhpMittjJfgBvKq4nYthwD75X7h31vEUE5v85ZigVFj0Fcj/qkbOb/XFFnAi5jOnTGIPUaY1lwwOdKGFCTSO2Gl5j62nagtXGIDZDLpuFQzHIo9ghVpKuLFzxlWbzQV3PGesX4ZYB3NfIlLpviL42javF67aCK/9WxB3+7oy06BZorPBDWtkgu3H22J7htpxdeeH5JLqdgyBSrEzeyPKq8V3EffbT4xJzdrQfixGUTEHiBwYTxMncvH1HPSiuyQvfnfzRWMSMVsEH4FVxX5Ha9fpHBkRJ90Efh8tQRpZahnSptduDO3a0P3myF/T3g/cM9/7qjTv1nsj+eobQxvDYglu+5lvtHWrFuTWuU1HeN4SMK3a9/tmyZJDVxu+ACRXjP+5rfC+uQGz2HDJNJ2qAQHUs4l0n/cWfb1ahZ3khkQSFZIjIvDyIsb1z557OPRAJdaqWjvOMb4g5iNFGtcob1ymrJuH9U+xoPxYOBd7OpvcgioKjXhw6criXUEFIga9x/1tbz6hQgNACV+xof1wRJ0IOF7Nk4dw6maG0BAoALl31tezYf0wWrdykpUn2B53UAQ2g0CF6sGKf3BWs2Lr5T1E13r1tPSkbgcLGQNi21zitFo5trF4dG8XLKjQisGWCVck/EXHYokObohvGgAcQazYtsLtuHUcFJsVP13wj2GrGDR9f8YL/VszZ2X4M3hjMce1//e2qZlehLddpY3DB5Ixil2OmLw+1DZXth/dpFU7o2f36uwMR55rYUOu9EhrrYsXMuYs5O9uv/98Cb6ld+P13GuMeJiXcDyiZFDhlsQo9K84NrbfgjXP1xtrZfoiZgm9n13i9a9f/Nhbi2+X6X3/rQh7XfO2mXdLLWMQfPX5OP4/+szNG+Qo6F1hg8e4/eq75SqRj85ri16GB/ttRgQQrbFdjboE3NKLdm/8ad6/6P8HO9ic17tE8hojd8PUeTWSBLVjEpE6ZXGOH9x85YSxipskRYywE2EVDzKArdrY/Loizqqpw9y+e0k+3TgAGcGScoHK1FT+QOuWLMqRnCxVxEcUNIIUdLlpsH9R/v6x5Ngxsu3YzVviozQO3NVp9PI6H6HHRzrg5cQPGVsRhy611j9G6agXobDEhoJOu7GOCtfq1KmPHF+2b1ZB2TarrMVZeTboMDxf8GxlOsB9bYPMn9NasPSws4CGBd2bOkvXqpcAiBWAQQ79B1xI7Trn+Fu4iDjFxg3yby5yxPXWcwKCLwrAWTrA/Z/ZM8umMQeqdBVjM4Lqj5aD1e0G4o2PJ6AFtw227OcF+xDzNHuOnOy3wwKIaAYQpEtaQtGG1cMNEu3By+OoE+I5ce7Si8gF2WmIC/n8WnnL/xxYn2A+v8bzxvXVeR7Fn1AksV9dHClZuIy27h7XewsJjVP92emzh7dc/JsSZkAPwvkwe2sW4oL10BY5gYFxgBCIi3XjDwkDdTohMfCFwF0Blw6vlys1bt6VT3wm66gX9ujbWf9/TwA0YGxEHDyNiAqybEPv88NZEtxKxwCof21UgRfKwmzq+iK2Yc5L96BGLEgxr5g/TdPy0ZmkV3O/o2IBSCxBxEH0WTrv+YNaiteFEnJXYAE8kxFy3NnVD7xEn2Y+F6oTBnWT5dH8txYSOH9g1wJYbxoV1C4Zr+znXHQQn2Y/xeNXcIRo24L7FiO8Gi9zPZgeEy1JFxqNfwNTQ3Ro8P/juYooVSwhcJ3W74CT7EQrwxbyhUrda6QgXIWjbtuTj/uHqv3n79Y8pcVJH7nGB7YESNTrJ3Xv3ZMHEPhpnBFBmpN+IWXL2p//pa9929aVp3Xf1OCrg3XvhuSQevW8eMG6BbsMAeGvQLBiCIKYg5b3rgEl6PMa/nW7beAKudeYgaOaN6xkqbFxxqv0W8CJj3o5sYnai/YiH6dhnvJaZiSo7FTj9+keHU+2/d+++tq+DdyZVimTyavo0jyzg8ZkP2g2W46d/0tcffVBZfFrX1eOYMmT8Aln02WYVx9+sGBfrDNH4xMn2Y0fi0NHT8qsxBydJ8oxxb2eTl1OFT4Lx9usfG+LUI/dvwSquRcP3VJ3DJY/thrqt/aWBcbEh4pAAgcrhkYk4TJqIS0FM3vvN+krZOj76b8Cb54kgAN4axJHpheDf2AzisHfK3M/1GN9N8UKPljKIL1w9c9f+vKGxY+442X4LeJYjE3FOtR+r8cnDukYr4rzh+keFk+3HNjKEPOKh4YGLaBdm4WebQidxZH93aRn1/eIOkutWrtumxxDBdpvEnWw/4iARZoWdCRRBdhdxwNuvf2ywlZADbT6sJi0bVpEHDx5ojAkGO4BWXMtnDNQ2MK6gYDBKkaCHZdFq7VUAovfr6R9+CY1DORB0Wn96GmOmh/SnBYH92khEzYajYsbCNWonQP0+T/M8Qsyh7s+0wG4RNpZ3uv3R4WT73UMjIoLX33vtRzzg9AWr9Rh2Y4Eem3hnLPYHjJwTmhHdvH5l/WkXaL932x9bbCfk4CLF5L9h0UhNZsCfdZ+MkOkju2v1dCROHAg6pdXR0euwdO0uGiiJWlXYmoUqRyuUMf7tZceqSVqHrnih6LtNxDVYTSAZBOD3xYoiNkDkWqtxdEho1aiqHkcE4pWsmKW4BqLcvZgziCv78cAj0Bq1rjwJ2k/7vdl+jNfYfgMIlUGCW2xA27LdB0O+P3SMQZZvRNB+2u+J9scWW8XIRQYuBAaubXuCZMe+Y6HZXQAqHrF0cM3iD9z5dmDe8i8lcPJiPUZwfEybboOTZ89r0VBkxgGIVjQtdgWCd+XarTL/042hAaHIFOvv00Rye0CSyH9tP2JzZi5co2ntqO8GEEiOfoCRFWyNS2g/7fdm+zv0Hq/lqtKkTC5fLhkZ4+QOgK5AfYbP1GOE46yYOShcKRNA+2m/J9sfW2znkQPIxEIV9HEzPpVaLfpLqVpdpO+IWdpXDSIOXjdkv44e0E52fDFZEyOwIrWLiAPI1gG4AWMziOPvtew+MnQQR4aQ+yCOFj+NOw6VgWPmqYiD2EXsDWpVYQJwb0AcH/yX9qP/ZbUmvXWLHQ8xtvmwzY6M5wbtA0If7PiE9tN+4L32X9KfqL8Xm0l807YDWjTWYmD3ZvodukL7ab+n2x9bbCPkkH4Ppe3jP0WKVu8gHxpCBDEgEB+W1w3p60jtR3YK6tG9W7qgbivYEfSlBcli4VI+88MFadxpqFjdAbBl3KdzIz22QA2v+m0HaaYvAo5ReBFid9/6qVoCAZlC/UfOCa1rFl/8V/av3bxb+/TBiwvBj9iLfRumy/ZVk/TzKIUyYeYK89PxB+2n/cBr7b9t2R91wWNXUFQZBeOxXQbQ4g4191yh/bTfDvbHFo8VcvC6HTp2WibMWiG1Ww6QkjU7q7sUDXix2kRNmGoVisrIfm31IqCIJIQI6nEhtgTJDeXqdZPKjfxk9NRl4qmZqZGB9iIADdddWxhFBtqQYBC36k1B2I4d2DHcaubczxelaZdh+hncxJ9M6qNFiiF28TkIYZyHl861IGt88F/Yj76TfgHTdFsZyRWoWYXkGKzI8B34tW+gn/tm12H9GZ/QftoPvNX+V037j58JyVqMDpSYQIsn2AbQEqv1h+HjAmk/7beL/bHFY4XcghUbpVGHIdqDFSnISHJAQUlUPl86bYB8u3K8DOvdUiqXLaSpzODP639Lp34TpEX3kRosiS1EbDXMXrJOGrQLCN1usANW+zFsFaOFU1Sgh2uzLsNDg0ML580hM0Z1l2cSJ9TXAO+18h2l3xFSvSHi3sqWyXw3DMsTh1pf8cnjth/dPtDLEfahf+/M0b6PZAFaPkgUYY1vaD/tB95qf7ni+fQnGq4jeS0yME4hmQ31wqyxC/XGenVsqMcWtJ/228n+2OKxQg614OAahWIe0be1ZpiixRcqn0OAQNi5gjY29doMlM3bQjo7INMLn4enDhWlkYY/aupSfc8OZMmUTreGwaQ5K7U3pzvwsKG9CRrxWysRFPycOsJHXFs8gYBx81XYIvtn1hi/R+IGAHrBYlsGZQriuyfd47QfDztWa6irhcXAxIDOWlfLnZXrturPN7LGfywl7af93mw/xm+rQDg6W2B3xh0kuKEeKMpLAcwJyHB0LxpL+2m/3eyPLY7IWoWIg/cO2wpwkY4a0E7ryllAwGCbFSvUfeunPSICPRWsxj9oO0gHbIB+jcUK5tKYwIPGjY3VigW2UHza1JUmdSqaZ8KARxPb0wAr9SL5w74bC/y/8Bl8l3WqlNJ2UfHN47J//vIvZcTkxdrHc9WcIbp97A56/aGwNB521OxCu5j4hvbTfm+2H/HPjToEyK3bd9XmUkXy6CL+xt83ZYcxiSPe1wKhNoF920jhfDnMM2HQftpvR/tjg+2FHNKI67X215guXMxZY3rI65nSm++GgIuTt0ILDYLcv2F6uC0HTwf13RDvh0ybyEAdNjQSjiwrFw2K5y7boIGfo/q3Nc+Gge+nQ+9xusJBP1zc7Oh96Ak8DvvrtPLXB3WATxPN4nPn1ytXpWH7wXLx8h86WS6a0l8HDk+A9tN+b7Yfv3fHPhO0nWJEYFFevWJR7RIS0QQNaD/tt6v9McX2Qg5ZrEiAgCdu/sTej4g4gO1WxM6hPgwyWu0Gtk3WfLVLFn22SU6dPa/CC/YWLZhTb2LUx4uKNn5jtMbeuEEdpHyJ/ObZEJCl2m3QlNAt6bEDO0iFkuE/E9/8W/vzVWylAeM7v5j8SGFJDBDIYvrx/CX9N5dO85cM6R7ddo5PaD/t92b7sVj/ZMVXsnrjjtAkLMT5limWT2pXKSlZX3t0zHeF9tN+O9sfIyDk7IqxSg3OUbKJ/tm+96h5Njx/37wV/G4DX/3MiEmLzLP25d79+8G3bt8xX8UM30Efq/3GRGCeCeHK79eCP+w4JPQ7nLdsg/mO5/JP7C9Zs7Pad+aHX8wzIQR9fza4dO0u+l7eCi2DDx49Zb7judB+2u/N9sN2fAexgfbTfqfYHxkJ/A1MTWc7xs/4VPfJa71XIsLYEJQw6T7oYzn83Rl5Lskzuq3ongRgN5588kl56qmwkgIxAfXi1m3erSUK0qRMbqzo78uqL3doKjbKG8A93a9rY2lYs7z5NyIG3zVq+SEoFLEI+Hfjmn9iP2oG4R7Ye/ikZEyfRl/PWLRWBo+dp3FIyHpGizekpEcGvCAHg07Jks+36M+Ced4w34lbaD/t92b7YTu+g9hA+2m/U+yPDFtvrVZq6Cc/X/hVlk3z18xUVyDiUOEZggVAxLkXB/Qmhk74RBau3GS+CgPbzcN7t4owSBS9aXcd+E63ZfEHsQQWiMuZNdpXO0J4OgiWbe4zQlPQ3UE7MgS3pn85pXkmDNiLuEFk8+J7wPdh0ax+Jenepp75yrOh/bSf9tN+2u9c+20t5Ko27qUZXe5CDsV//YZM15YbAIVuUSzY2/li4w5B4URUr06bOoVUKFVA6lcvKyg3YoHq8Fv3HFHhdjDotMbnWOBzqFFVvHBujctBnIJdQAo6euut/zqkoHTW117RFPdKZQqqRxLA1sPHzoQKV/SsdAWit1jBnGp7kfxvamKIXaD9tJ/2037a70z7bS3krGxMVDFHIH/yZC/oBUCqMTx1AAWEUXuORAxELzphbN0dcvMi+NOVzK+m1Ru3eOFcki9n1njZTv0vgZvdWnXt3P+dutot0H8PKzbYX8IQr9mzZDDfcQ60n/bTftpP++1tv62FHJT1B+0Ga0spqGrsnyMLEyR5NrEM6NbUdvVg4oKzP14wRNtRFW4Hgk7q/r8FvG6F8uQwbt6QlYdVlNEpYMv9yPdnjAc3RLiiVpErSGEPXXUVeEszmZwE7af9tJ/2035n2W/78iNoOYX2HOu/3qN14pDUULlMIWnTuLrH1EKLb27euiN7DoV53VAg2ZVMGV7WG7eE8Sd/7myO87qhUDTshnjduf+YLgAsUC8o1xuZdcUF8YpaXJar3SnQftpP+2k/7Xeu/bYXchaoEwNRlyL5C1rl3NtB7CBuXriMDxwJ73VDQWRk3ah4M27gdKbXDYJv98Hv5ferf0qWjOmizOLxZLDqCjp+NlS4orOFKygcXbRATsP2kFUXspYA3Ox7D5/QXnuw3WpcbjdoP+2n/bSf9nuP/Y4RckTk2p9/ycTZK/XmvXDpN/NsCOidGrLqyCUFcmcLl22K7egZC9fInKXrVcxZFHg7u4zxb/9Ic2FP5ftTP8rsJetl575joQ3EAVZdObO/pnF+sP/NrBnDrbqwYkMfXhRddX0cGtYsJ37tG2ishB2g/bSf9tN+2u999lPIOYzJcz6TKfNWaVNgCDHLZRxRk3yAtiSd+k7QhwAgDfut7Jnk4NFTcvm3a5Lzjddk4aS+triZkZnUsc942WE8yBCfqHyPB7eYsfpyr+htsffQCek2cLL8ce2GvkaLltQpkxv/xlFNW29a713xbVtf3/N0aD/tp/20n/Z7of0QcsRZBB0/F3z7zl3zVeT88PPF4DK1u2pl6zzlWwQv/nxz8IMHD/W96zf+Dq7UsIe+t/HbfXrODsDuoyfOBT98GGJHVGzaeiA4d7mP1MaydboG7z74vflOcPDx0z/pe7nKNNcOGHaB9tN+2k/7ab932W8PnymJFVhVJIqmUC/KjLToFqg/X0z6vPaprV+9jLqhAWrkVCn3jh4fPX5Of9oB2P1WtkzhXOcRsWv/d7oSw7Yyvq9l0wdKIZdq3Ug1R1kb1BY6fjp8ZpMnQ/tpP+2n/bTfu+ynkPNCkPjQpd9E3VaFiJs3oZfe/O5YcXaJE4cVDHYCKIjc1d94iI3vIVeOzDJ7rJ+64l0xFjn6OYDkECdB+2k/7af9tN859lPIeSFzl66Xoyd+0NXL1EAfLfrrDm7i9Vv26DGSI5yE/+i5moKeIV1qmTrCJ8L+uxu/3adCFrGGiBl0ErSf9tN+2k/7nWM/hZyXgdTqWYvX6XGP9h9E6InDSgUtzhA8Chczass5BfTbQzAsStSMHdg+NPXcFXgqA8Yt0OM6VUvpw+wUaD/tp/20n/Y7y34KOS9j35GT5mokldStWto8G8bDh8HSd/hMzVpFpmp/nybRxhvYiS07DunPqhWKqEh1B7UIW/cYrVlMaVIml7ZNnNXejfbTfkD7aT/td479FHJexuXfrupPxAZYiQ0W8MT1Gjpd1mzapa97tPtAe805iV+vhNiPgo/uoJ5Q0y7DBC3MsO08JpIVm52h/bQf0H7a7w7tt6/9FHJehlWt+uDR09ow3wJtuz7yGREq4to0riaNapXXYyeRKUOI/dv3BulPC3gg67b2l1PnftFiyeMGdXCciAW0n/YD2k/7XaH99rafBYG9kIbtA+Twd2ckS6Z0WmLkwsXfDAG3UwsgwksHT9yHtSuYn3YWWHVVa9JbK3+jWCSKJh8+djrU5Y7CkRMGd3JUXKArtJ/2037aT/udZT+FnBdy5fdr0sZvjJw4E74+TuaM6cS/W1PJm/NRt7OTgDeyQ59xGg/hCrpgwP7UKV80zzgT2k/7aT/tp/3OsZ9Czku5d+++rN2821iNnJHEiRNK4bw59EZ2j5tzKlf/vCGfr98u536+KClTJJUyxfJGmMHrVGg/7af9tJ/2O8N+CjlCCCGEEJvCZAdCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixKRRyhBBCCCE2hUKOEEIIIcSmUMgRQgghhNgUCjlCCCGEEJtCIUcIIYQQYlMo5AghhBBCbAqFHCGEEEKITaGQI4QQQgixJSL/B1B4RRSivWOSAAAAAElFTkSuQmCC",
                            "visible": false
                        }
                    ],
                    "legend": {
                        "x": 0.5,
                        "y": 1.0843199019294318,
                        "font": {
                            "size": 15,
                            "color": "rgb(0, 0, 0)",
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "<br>"
                        },
                        "valign": "middle",
                        "xanchor": "center",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "borderwidth": 1,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 51
                    },
                    "shapes": [
                        {
                            "x0": 8.5,
                            "x1": 8.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 17.5,
                            "x1": 17.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 26.5,
                            "x1": 26.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 35.5,
                            "x1": 35.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 44.5,
                            "x1": 44.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 53.5,
                            "x1": 53.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": -0.5,
                            "x1": -0.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 58.5,
                            "x1": 58.5,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 5
                            },
                            "type": "line",
                            "yref": "paper",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 4.083807498005849,
                            "y": 0.13,
                            "ax": -508,
                            "ay": 122,
                            "font": {
                                "size": 11
                            },
                            "text": "",
                            "yref": "paper",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~simon.verstraete",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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": "2024-03-31 22:00:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "simon.verstraete",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:25:29.879118Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/191.embed",
            "fid": "peter.capcara:191",
            "filename": "Plot 191",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/191/9_9TIJ0I919XCSV1M878XSLVHBEEISBK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/191/2_3FHF4ZGLWERHZ028XN4BMFQYB4G975.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/191/8_VU62PGLSTSLBARSO79LKQ54KY7A1ZB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/191/9_9TIJ0I919XCSV1M878XSLVHBEEISBK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:191",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:191",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/191/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:25:29.889Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/191/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:190:67261f",
                        "bsrc": "peter.capcara:190:7ebfa9",
                        "csrc": "peter.capcara:190:b10422",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:190:3c1c2c",
                        "bsrc": "peter.capcara:190:bc68e0",
                        "csrc": "peter.capcara:190:1e6f1e",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:190:4e135c",
                        "bsrc": "peter.capcara:190:a226b9",
                        "csrc": "peter.capcara:190:edba89",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:190:577289",
                        "bsrc": "peter.capcara:190:5079a3",
                        "csrc": "peter.capcara:190:fdb6ab",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:190:62bfa4",
                        "bsrc": "peter.capcara:190:6015b6",
                        "csrc": "peter.capcara:190:fcd17b",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:190:d5dc46",
                        "bsrc": "peter.capcara:190:0f5f98",
                        "csrc": "peter.capcara:190:6cfeb5",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:190:d9bf55",
                        "bsrc": "peter.capcara:190:c53828",
                        "csrc": "peter.capcara:190:aa0e82",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:190:d9cc6e",
                        "bsrc": "peter.capcara:190:df3b6c",
                        "csrc": "peter.capcara:190:3eed39",
                        "mode": "markers",
                        "name": "3270.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f98d3b",
                        "bsrc": "peter.capcara:190:1145b0",
                        "csrc": "peter.capcara:190:f6b42f",
                        "mode": "markers",
                        "name": "650.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:a78add",
                        "bsrc": "peter.capcara:190:e29b93",
                        "csrc": "peter.capcara:190:136019",
                        "mode": "markers",
                        "name": "649.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:09abb0",
                        "bsrc": "peter.capcara:190:190ac9",
                        "csrc": "peter.capcara:190:2e6c41",
                        "mode": "markers",
                        "name": "648.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:bb777c",
                        "bsrc": "peter.capcara:190:9281ae",
                        "csrc": "peter.capcara:190:a74b17",
                        "mode": "markers",
                        "name": "647.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:43599d",
                        "bsrc": "peter.capcara:190:33a0fb",
                        "csrc": "peter.capcara:190:0f6a58",
                        "mode": "markers",
                        "name": "646.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:fbbaaa",
                        "bsrc": "peter.capcara:190:a93f68",
                        "csrc": "peter.capcara:190:aa9729",
                        "mode": "markers",
                        "name": "645.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f711e0",
                        "bsrc": "peter.capcara:190:d3d2a8",
                        "csrc": "peter.capcara:190:5c89ab",
                        "mode": "markers",
                        "name": "644.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:e7e669",
                        "bsrc": "peter.capcara:190:e794fb",
                        "csrc": "peter.capcara:190:c337f0",
                        "mode": "markers",
                        "name": "643.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f9947b",
                        "bsrc": "peter.capcara:190:9a1045",
                        "csrc": "peter.capcara:190:ad0f16",
                        "mode": "markers",
                        "name": "642.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f9e6b3",
                        "bsrc": "peter.capcara:190:969acf",
                        "csrc": "peter.capcara:190:ac2eb0",
                        "mode": "markers",
                        "name": "641.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f01f75",
                        "bsrc": "peter.capcara:190:0f3f64",
                        "csrc": "peter.capcara:190:b99404",
                        "mode": "markers",
                        "name": "640.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:b9ed1f",
                        "bsrc": "peter.capcara:190:93a72f",
                        "csrc": "peter.capcara:190:c2e4eb",
                        "mode": "markers",
                        "name": "639.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:2b1126",
                        "bsrc": "peter.capcara:190:fb4585",
                        "csrc": "peter.capcara:190:e93d4e",
                        "mode": "markers",
                        "name": "638.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:4eec3d",
                        "bsrc": "peter.capcara:190:e65a68",
                        "csrc": "peter.capcara:190:e7bfe4",
                        "mode": "markers",
                        "name": "637.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:708609",
                        "bsrc": "peter.capcara:190:b11b8b",
                        "csrc": "peter.capcara:190:6b97e2",
                        "mode": "markers",
                        "name": "636.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:da514a",
                        "bsrc": "peter.capcara:190:4e2cb7",
                        "csrc": "peter.capcara:190:923964",
                        "mode": "markers",
                        "name": "635.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:c14770",
                        "bsrc": "peter.capcara:190:213df7",
                        "csrc": "peter.capcara:190:b925c8",
                        "mode": "markers",
                        "name": "634.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:43e261",
                        "bsrc": "peter.capcara:190:73b086",
                        "csrc": "peter.capcara:190:97655b",
                        "mode": "markers",
                        "name": "633.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:c90426",
                        "bsrc": "peter.capcara:190:b97ee3",
                        "csrc": "peter.capcara:190:cccc4b",
                        "mode": "markers",
                        "name": "632.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:21384c",
                        "bsrc": "peter.capcara:190:0442e3",
                        "csrc": "peter.capcara:190:ee5779",
                        "mode": "markers",
                        "name": "631.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:192de4",
                        "bsrc": "peter.capcara:190:676f82",
                        "csrc": "peter.capcara:190:b76f56",
                        "mode": "markers",
                        "name": "630.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:90cb28",
                        "bsrc": "peter.capcara:190:acae79",
                        "csrc": "peter.capcara:190:ce88d3",
                        "mode": "markers",
                        "name": "629.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:4c16e7",
                        "bsrc": "peter.capcara:190:6b9ec3",
                        "csrc": "peter.capcara:190:b25baf",
                        "mode": "markers",
                        "name": "628.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:eceea5",
                        "bsrc": "peter.capcara:190:b68b38",
                        "csrc": "peter.capcara:190:b62793",
                        "mode": "markers",
                        "name": "627.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:3d11c3",
                        "bsrc": "peter.capcara:190:470175",
                        "csrc": "peter.capcara:190:5bac73",
                        "mode": "markers",
                        "name": "626.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:d66753",
                        "bsrc": "peter.capcara:190:26c838",
                        "csrc": "peter.capcara:190:b74126",
                        "mode": "markers",
                        "name": "625.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:297621",
                        "bsrc": "peter.capcara:190:074eb0",
                        "csrc": "peter.capcara:190:f9f831",
                        "mode": "markers",
                        "name": "624.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:0f5032",
                        "bsrc": "peter.capcara:190:138454",
                        "csrc": "peter.capcara:190:c45f2a",
                        "mode": "markers",
                        "name": "623.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:2132ea",
                        "bsrc": "peter.capcara:190:411eb5",
                        "csrc": "peter.capcara:190:56565f",
                        "mode": "markers",
                        "name": "622.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:4667f1",
                        "bsrc": "peter.capcara:190:7e851d",
                        "csrc": "peter.capcara:190:9e46dc",
                        "mode": "markers",
                        "name": "621.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:b52266",
                        "bsrc": "peter.capcara:190:b6a868",
                        "csrc": "peter.capcara:190:fcb701",
                        "mode": "markers",
                        "name": "620.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:dbd4a8",
                        "bsrc": "peter.capcara:190:cdf294",
                        "csrc": "peter.capcara:190:9af191",
                        "mode": "markers",
                        "name": "619.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:a597b5",
                        "bsrc": "peter.capcara:190:3c8acf",
                        "csrc": "peter.capcara:190:d98105",
                        "mode": "markers",
                        "name": "618.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:0ee92a",
                        "bsrc": "peter.capcara:190:702356",
                        "csrc": "peter.capcara:190:b78b6d",
                        "mode": "markers",
                        "name": "617.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:495e95",
                        "bsrc": "peter.capcara:190:9d68e0",
                        "csrc": "peter.capcara:190:f0f5d3",
                        "mode": "markers",
                        "name": "616.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f662cb",
                        "bsrc": "peter.capcara:190:ca80ad",
                        "csrc": "peter.capcara:190:8b138f",
                        "mode": "markers",
                        "name": "615.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:22c1b0",
                        "bsrc": "peter.capcara:190:93684c",
                        "csrc": "peter.capcara:190:b0ec5d",
                        "mode": "markers",
                        "name": "614.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:349068",
                        "bsrc": "peter.capcara:190:42c09f",
                        "csrc": "peter.capcara:190:b0e246",
                        "mode": "markers",
                        "name": "613.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:7dc6e1",
                        "bsrc": "peter.capcara:190:83dde7",
                        "csrc": "peter.capcara:190:007268",
                        "mode": "markers",
                        "name": "612.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:a9b853",
                        "bsrc": "peter.capcara:190:654562",
                        "csrc": "peter.capcara:190:2a81f8",
                        "mode": "markers",
                        "name": "611.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:74b866",
                        "bsrc": "peter.capcara:190:da4f56",
                        "csrc": "peter.capcara:190:9c98ef",
                        "mode": "markers",
                        "name": "610.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:98e20a",
                        "bsrc": "peter.capcara:190:faca5e",
                        "csrc": "peter.capcara:190:ba1823",
                        "mode": "markers",
                        "name": "609.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:5db02e",
                        "bsrc": "peter.capcara:190:dca4d5",
                        "csrc": "peter.capcara:190:ce6991",
                        "mode": "markers",
                        "name": "608.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:448e47",
                        "bsrc": "peter.capcara:190:765f6c",
                        "csrc": "peter.capcara:190:368dfa",
                        "mode": "markers",
                        "name": "607.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:bf9cd3",
                        "bsrc": "peter.capcara:190:4a9c10",
                        "csrc": "peter.capcara:190:444441",
                        "mode": "markers",
                        "name": "606.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:539d5c",
                        "bsrc": "peter.capcara:190:7c44a5",
                        "csrc": "peter.capcara:190:1c4908",
                        "mode": "markers",
                        "name": "605.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:5a6509",
                        "bsrc": "peter.capcara:190:7a04f0",
                        "csrc": "peter.capcara:190:41b8d7",
                        "mode": "markers",
                        "name": "604.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:027414",
                        "bsrc": "peter.capcara:190:969a70",
                        "csrc": "peter.capcara:190:508ed6",
                        "mode": "markers",
                        "name": "603.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:103545",
                        "bsrc": "peter.capcara:190:53259f",
                        "csrc": "peter.capcara:190:ac82cf",
                        "mode": "markers",
                        "name": "602.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:83d886",
                        "bsrc": "peter.capcara:190:36828c",
                        "csrc": "peter.capcara:190:cfca5d",
                        "mode": "markers",
                        "name": "601.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f55dfa",
                        "bsrc": "peter.capcara:190:40f3c0",
                        "csrc": "peter.capcara:190:b9cdf7",
                        "mode": "markers",
                        "name": "600.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:416f00",
                        "bsrc": "peter.capcara:190:213a29",
                        "csrc": "peter.capcara:190:9cdbeb",
                        "mode": "markers",
                        "name": "599.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:d04065",
                        "bsrc": "peter.capcara:190:606b8d",
                        "csrc": "peter.capcara:190:35d8d4",
                        "mode": "markers",
                        "name": "598.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:9ac3ba",
                        "bsrc": "peter.capcara:190:5a9f05",
                        "csrc": "peter.capcara:190:c4c140",
                        "mode": "markers",
                        "name": "597.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:7d8f91",
                        "bsrc": "peter.capcara:190:160dac",
                        "csrc": "peter.capcara:190:999285",
                        "mode": "markers",
                        "name": "596.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:32d854",
                        "bsrc": "peter.capcara:190:21d4e8",
                        "csrc": "peter.capcara:190:a9455e",
                        "mode": "markers",
                        "name": "595.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:cf968e",
                        "bsrc": "peter.capcara:190:54e1cc",
                        "csrc": "peter.capcara:190:7e578b",
                        "mode": "markers",
                        "name": "594.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:b37517",
                        "bsrc": "peter.capcara:190:6c6f9a",
                        "csrc": "peter.capcara:190:7744c3",
                        "mode": "markers",
                        "name": "593.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:de354f",
                        "bsrc": "peter.capcara:190:6bf1dc",
                        "csrc": "peter.capcara:190:1d3a17",
                        "mode": "markers",
                        "name": "592.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:c83be1",
                        "bsrc": "peter.capcara:190:a32d05",
                        "csrc": "peter.capcara:190:dd51c8",
                        "mode": "markers",
                        "name": "591.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:07ef37",
                        "bsrc": "peter.capcara:190:ce5343",
                        "csrc": "peter.capcara:190:e52b68",
                        "mode": "markers",
                        "name": "589.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:c1812b",
                        "bsrc": "peter.capcara:190:52c387",
                        "csrc": "peter.capcara:190:5cf6ba",
                        "mode": "markers",
                        "name": "588.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:f7116b",
                        "bsrc": "peter.capcara:190:5e6361",
                        "csrc": "peter.capcara:190:904edb",
                        "mode": "markers",
                        "name": "587.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:512608",
                        "bsrc": "peter.capcara:190:9abed0",
                        "csrc": "peter.capcara:190:ba7f83",
                        "mode": "markers",
                        "name": "586.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:36c796",
                        "bsrc": "peter.capcara:190:7e5f33",
                        "csrc": "peter.capcara:190:b82b8f",
                        "mode": "markers",
                        "name": "585.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:4cc86a",
                        "bsrc": "peter.capcara:190:c497eb",
                        "csrc": "peter.capcara:190:c9af14",
                        "mode": "markers",
                        "name": "584.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:487ec0",
                        "bsrc": "peter.capcara:190:1f2b14",
                        "csrc": "peter.capcara:190:2933ec",
                        "mode": "markers",
                        "name": "583.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:3d1fe1",
                        "bsrc": "peter.capcara:190:77d584",
                        "csrc": "peter.capcara:190:60dc06",
                        "mode": "markers",
                        "name": "582.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:2ec0ff",
                        "bsrc": "peter.capcara:190:481712",
                        "csrc": "peter.capcara:190:425c26",
                        "mode": "markers",
                        "name": "581.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:24a992",
                        "bsrc": "peter.capcara:190:712023",
                        "csrc": "peter.capcara:190:86c255",
                        "mode": "markers",
                        "name": "580.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:02de3e",
                        "bsrc": "peter.capcara:190:da8c67",
                        "csrc": "peter.capcara:190:0f3267",
                        "mode": "markers",
                        "name": "579.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:190:a53ce7",
                        "bsrc": "peter.capcara:190:b3f4ff",
                        "csrc": "peter.capcara:190:4bfad0",
                        "mode": "markers",
                        "name": "577.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:190:a8feba"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:190:1ee941"
                        },
                        "columnwidthsrc": "peter.capcara:190:675aa1"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:17:34.902501Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hiteshrane5/74.embed",
            "fid": "hiteshrane5:74",
            "filename": "plot from API (32)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hiteshrane5:74/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hiteshrane5:74/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/hiteshrane5:74/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/hiteshrane5:74/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hiteshrane5:74",
                "plots": "https://api.plotly.com/v2/plots/hiteshrane5:74",
                "parent": "https://api.plotly.com/v2/folders/home?user=hiteshrane5"
            },
            "owner": "hiteshrane5",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hiteshrane5/74/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:17:35.870Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hiteshrane5/74/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "contour",
                        "zsrc": "hiteshrane5:75:",
                        "contours": {
                            "end": 500,
                            "size": 2,
                            "start": 0,
                            "coloring": "heatmap",
                            "labelfont": {
                                "size": 12,
                                "color": "white",
                                "family": "Raleway"
                            },
                            "showlabels": true,
                            "hoverformat": ".2f"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hiteshrane5",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:48:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hiteshrane5",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:17:34.057672Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hiteshrane5/72.embed",
            "fid": "hiteshrane5:72",
            "filename": "plot from API (32)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hiteshrane5:72/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hiteshrane5:72/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/hiteshrane5:72/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/hiteshrane5:72/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hiteshrane5:72",
                "plots": "https://api.plotly.com/v2/plots/hiteshrane5:72",
                "parent": "https://api.plotly.com/v2/folders/home?user=hiteshrane5"
            },
            "owner": "hiteshrane5",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hiteshrane5/72/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:17:35.122Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hiteshrane5/72/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "contour",
                        "zsrc": "hiteshrane5:73:",
                        "contours": {
                            "end": 500,
                            "size": 2,
                            "start": 0,
                            "coloring": "heatmap",
                            "labelfont": {
                                "size": 12,
                                "color": "white",
                                "family": "Raleway"
                            },
                            "showlabels": true,
                            "hoverformat": ".2f"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hiteshrane5",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:48:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hiteshrane5",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:14:14.140832Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/189.embed",
            "fid": "peter.capcara:189",
            "filename": "Plot 189",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/189/9_G4EHLQXILZYZ22YIKZ1SVDPLVUDAF1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/189/2_P5O88TCS3YFVLI3Z9XJLXZICEDJGQY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/189/8_4CQN1ISRBZ8RM8AN9YA8HHWH2YDBE2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/189/9_G4EHLQXILZYZ22YIKZ1SVDPLVUDAF1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:189",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:189",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/189/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:14:14.153Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/189/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:188:dd8f4e",
                        "bsrc": "peter.capcara:188:1e43a3",
                        "csrc": "peter.capcara:188:434a65",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:188:533db3",
                        "bsrc": "peter.capcara:188:98a06e",
                        "csrc": "peter.capcara:188:781a0e",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:188:4e97f2",
                        "bsrc": "peter.capcara:188:b06f03",
                        "csrc": "peter.capcara:188:c17a08",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:188:b06371",
                        "bsrc": "peter.capcara:188:89d650",
                        "csrc": "peter.capcara:188:a9c2e9",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:188:88b49f",
                        "bsrc": "peter.capcara:188:6289c8",
                        "csrc": "peter.capcara:188:9471e6",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:188:0ab221",
                        "bsrc": "peter.capcara:188:b0341a",
                        "csrc": "peter.capcara:188:7876d4",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:188:aafa48",
                        "bsrc": "peter.capcara:188:a8635d",
                        "csrc": "peter.capcara:188:4c1662",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:188:426cf3",
                        "bsrc": "peter.capcara:188:c7054e",
                        "csrc": "peter.capcara:188:f93078",
                        "mode": "markers",
                        "name": "3270.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:6b4852",
                        "bsrc": "peter.capcara:188:b0bf70",
                        "csrc": "peter.capcara:188:af17cb",
                        "mode": "markers",
                        "name": "650.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:ad3979",
                        "bsrc": "peter.capcara:188:4a24d8",
                        "csrc": "peter.capcara:188:54f4da",
                        "mode": "markers",
                        "name": "649.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:c91ce2",
                        "bsrc": "peter.capcara:188:f6c4cc",
                        "csrc": "peter.capcara:188:3d5c09",
                        "mode": "markers",
                        "name": "648.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:737773",
                        "bsrc": "peter.capcara:188:9dc862",
                        "csrc": "peter.capcara:188:d00d55",
                        "mode": "markers",
                        "name": "647.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:699986",
                        "bsrc": "peter.capcara:188:ccea6b",
                        "csrc": "peter.capcara:188:56eb48",
                        "mode": "markers",
                        "name": "646.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:e8ca6c",
                        "bsrc": "peter.capcara:188:2daf4d",
                        "csrc": "peter.capcara:188:b1a13b",
                        "mode": "markers",
                        "name": "645.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:227d80",
                        "bsrc": "peter.capcara:188:64d2cb",
                        "csrc": "peter.capcara:188:498695",
                        "mode": "markers",
                        "name": "644.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:0f81cc",
                        "bsrc": "peter.capcara:188:bed197",
                        "csrc": "peter.capcara:188:b9b82f",
                        "mode": "markers",
                        "name": "643.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:c95c5d",
                        "bsrc": "peter.capcara:188:fbd75f",
                        "csrc": "peter.capcara:188:71a7e6",
                        "mode": "markers",
                        "name": "642.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:12c314",
                        "bsrc": "peter.capcara:188:bb0c7d",
                        "csrc": "peter.capcara:188:455451",
                        "mode": "markers",
                        "name": "641.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:f8a3ca",
                        "bsrc": "peter.capcara:188:d64ef9",
                        "csrc": "peter.capcara:188:d4a708",
                        "mode": "markers",
                        "name": "640.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:e23cc3",
                        "bsrc": "peter.capcara:188:fbcd74",
                        "csrc": "peter.capcara:188:87f079",
                        "mode": "markers",
                        "name": "639.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:b93e36",
                        "bsrc": "peter.capcara:188:49cd34",
                        "csrc": "peter.capcara:188:b6c21b",
                        "mode": "markers",
                        "name": "638.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:dee3d7",
                        "bsrc": "peter.capcara:188:c7ed2b",
                        "csrc": "peter.capcara:188:82f7c7",
                        "mode": "markers",
                        "name": "637.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:7f558d",
                        "bsrc": "peter.capcara:188:6c8843",
                        "csrc": "peter.capcara:188:69c9e7",
                        "mode": "markers",
                        "name": "636.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:2e3eaf",
                        "bsrc": "peter.capcara:188:2b65bd",
                        "csrc": "peter.capcara:188:a31bde",
                        "mode": "markers",
                        "name": "635.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:b6fab2",
                        "bsrc": "peter.capcara:188:cec25a",
                        "csrc": "peter.capcara:188:6beb4d",
                        "mode": "markers",
                        "name": "634.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:41ca9b",
                        "bsrc": "peter.capcara:188:250c62",
                        "csrc": "peter.capcara:188:3086a3",
                        "mode": "markers",
                        "name": "633.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:7b0ac3",
                        "bsrc": "peter.capcara:188:feff67",
                        "csrc": "peter.capcara:188:7f3cfd",
                        "mode": "markers",
                        "name": "632.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:cada43",
                        "bsrc": "peter.capcara:188:6a90bd",
                        "csrc": "peter.capcara:188:8f8486",
                        "mode": "markers",
                        "name": "631.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:abd687",
                        "bsrc": "peter.capcara:188:59f964",
                        "csrc": "peter.capcara:188:652c3c",
                        "mode": "markers",
                        "name": "630.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:87bd08",
                        "bsrc": "peter.capcara:188:a0ec6d",
                        "csrc": "peter.capcara:188:7963d0",
                        "mode": "markers",
                        "name": "629.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:6e0fe7",
                        "bsrc": "peter.capcara:188:622d0d",
                        "csrc": "peter.capcara:188:aa70a2",
                        "mode": "markers",
                        "name": "628.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5d5ce6",
                        "bsrc": "peter.capcara:188:3e1afa",
                        "csrc": "peter.capcara:188:d5314d",
                        "mode": "markers",
                        "name": "627.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:222f35",
                        "bsrc": "peter.capcara:188:3ae423",
                        "csrc": "peter.capcara:188:c4f07e",
                        "mode": "markers",
                        "name": "626.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:c1a9b9",
                        "bsrc": "peter.capcara:188:ac76ee",
                        "csrc": "peter.capcara:188:0c874f",
                        "mode": "markers",
                        "name": "625.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:62a5af",
                        "bsrc": "peter.capcara:188:35aa82",
                        "csrc": "peter.capcara:188:9661d8",
                        "mode": "markers",
                        "name": "624.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:8de791",
                        "bsrc": "peter.capcara:188:11eb7d",
                        "csrc": "peter.capcara:188:2a56f2",
                        "mode": "markers",
                        "name": "623.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:535f21",
                        "bsrc": "peter.capcara:188:0b77fd",
                        "csrc": "peter.capcara:188:e501bf",
                        "mode": "markers",
                        "name": "622.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:03851f",
                        "bsrc": "peter.capcara:188:cf42ba",
                        "csrc": "peter.capcara:188:bbdf0c",
                        "mode": "markers",
                        "name": "621.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:0f5f2f",
                        "bsrc": "peter.capcara:188:522f68",
                        "csrc": "peter.capcara:188:71268d",
                        "mode": "markers",
                        "name": "620.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:d2e5d5",
                        "bsrc": "peter.capcara:188:3e55b3",
                        "csrc": "peter.capcara:188:aab7f6",
                        "mode": "markers",
                        "name": "619.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:e315e2",
                        "bsrc": "peter.capcara:188:27c387",
                        "csrc": "peter.capcara:188:dd7f68",
                        "mode": "markers",
                        "name": "618.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:985d09",
                        "bsrc": "peter.capcara:188:bd6149",
                        "csrc": "peter.capcara:188:4cf5ce",
                        "mode": "markers",
                        "name": "617.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5d8bf8",
                        "bsrc": "peter.capcara:188:6e4746",
                        "csrc": "peter.capcara:188:44eeee",
                        "mode": "markers",
                        "name": "616.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:2bf1b1",
                        "bsrc": "peter.capcara:188:adb169",
                        "csrc": "peter.capcara:188:5491ff",
                        "mode": "markers",
                        "name": "615.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:85d588",
                        "bsrc": "peter.capcara:188:0a00cc",
                        "csrc": "peter.capcara:188:d2effa",
                        "mode": "markers",
                        "name": "614.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:935bbe",
                        "bsrc": "peter.capcara:188:fd61cc",
                        "csrc": "peter.capcara:188:828653",
                        "mode": "markers",
                        "name": "613.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:284e0c",
                        "bsrc": "peter.capcara:188:ac650a",
                        "csrc": "peter.capcara:188:02ca70",
                        "mode": "markers",
                        "name": "612.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:4fb2ec",
                        "bsrc": "peter.capcara:188:f7040f",
                        "csrc": "peter.capcara:188:c733b0",
                        "mode": "markers",
                        "name": "611.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:3a7643",
                        "bsrc": "peter.capcara:188:d03d55",
                        "csrc": "peter.capcara:188:3ebcb7",
                        "mode": "markers",
                        "name": "610.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:7f85ad",
                        "bsrc": "peter.capcara:188:fde4cf",
                        "csrc": "peter.capcara:188:6ebc9b",
                        "mode": "markers",
                        "name": "609.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:6d8d9c",
                        "bsrc": "peter.capcara:188:636074",
                        "csrc": "peter.capcara:188:fb6829",
                        "mode": "markers",
                        "name": "608.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:f4dc0d",
                        "bsrc": "peter.capcara:188:786b87",
                        "csrc": "peter.capcara:188:761c10",
                        "mode": "markers",
                        "name": "607.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:3c64d0",
                        "bsrc": "peter.capcara:188:911a68",
                        "csrc": "peter.capcara:188:128fb3",
                        "mode": "markers",
                        "name": "606.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5ae698",
                        "bsrc": "peter.capcara:188:ada66a",
                        "csrc": "peter.capcara:188:053d2f",
                        "mode": "markers",
                        "name": "605.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:8b93bc",
                        "bsrc": "peter.capcara:188:a040b7",
                        "csrc": "peter.capcara:188:69fa11",
                        "mode": "markers",
                        "name": "604.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:4ccb61",
                        "bsrc": "peter.capcara:188:df5a97",
                        "csrc": "peter.capcara:188:d5a05f",
                        "mode": "markers",
                        "name": "603.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:3c0314",
                        "bsrc": "peter.capcara:188:cd4234",
                        "csrc": "peter.capcara:188:5bef17",
                        "mode": "markers",
                        "name": "602.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:080e9e",
                        "bsrc": "peter.capcara:188:6b118b",
                        "csrc": "peter.capcara:188:d1c00b",
                        "mode": "markers",
                        "name": "601.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:9b14ce",
                        "bsrc": "peter.capcara:188:788a4e",
                        "csrc": "peter.capcara:188:642a87",
                        "mode": "markers",
                        "name": "600.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5ced36",
                        "bsrc": "peter.capcara:188:c27d45",
                        "csrc": "peter.capcara:188:f84693",
                        "mode": "markers",
                        "name": "599.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:46e8a9",
                        "bsrc": "peter.capcara:188:fd10b2",
                        "csrc": "peter.capcara:188:774408",
                        "mode": "markers",
                        "name": "598.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:cceb11",
                        "bsrc": "peter.capcara:188:d54cb7",
                        "csrc": "peter.capcara:188:1aef0d",
                        "mode": "markers",
                        "name": "597.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:3e8635",
                        "bsrc": "peter.capcara:188:4b3648",
                        "csrc": "peter.capcara:188:afb223",
                        "mode": "markers",
                        "name": "596.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:6f1618",
                        "bsrc": "peter.capcara:188:a3e09d",
                        "csrc": "peter.capcara:188:73bf0b",
                        "mode": "markers",
                        "name": "595.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:4ae310",
                        "bsrc": "peter.capcara:188:59b5ab",
                        "csrc": "peter.capcara:188:5781b5",
                        "mode": "markers",
                        "name": "594.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:2551c2",
                        "bsrc": "peter.capcara:188:2dfd27",
                        "csrc": "peter.capcara:188:91d283",
                        "mode": "markers",
                        "name": "593.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:585048",
                        "bsrc": "peter.capcara:188:505883",
                        "csrc": "peter.capcara:188:b16070",
                        "mode": "markers",
                        "name": "592.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:2db09f",
                        "bsrc": "peter.capcara:188:013d67",
                        "csrc": "peter.capcara:188:78623b",
                        "mode": "markers",
                        "name": "591.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:d76b30",
                        "bsrc": "peter.capcara:188:5a835a",
                        "csrc": "peter.capcara:188:064472",
                        "mode": "markers",
                        "name": "590.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:158af8",
                        "bsrc": "peter.capcara:188:502153",
                        "csrc": "peter.capcara:188:e1ac7b",
                        "mode": "markers",
                        "name": "589.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:ee3bc9",
                        "bsrc": "peter.capcara:188:954f82",
                        "csrc": "peter.capcara:188:429957",
                        "mode": "markers",
                        "name": "588.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:f702db",
                        "bsrc": "peter.capcara:188:6830f5",
                        "csrc": "peter.capcara:188:7e0a68",
                        "mode": "markers",
                        "name": "587.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:30a230",
                        "bsrc": "peter.capcara:188:989575",
                        "csrc": "peter.capcara:188:5d3e5a",
                        "mode": "markers",
                        "name": "586.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:9f150e",
                        "bsrc": "peter.capcara:188:732d9a",
                        "csrc": "peter.capcara:188:4c2e20",
                        "mode": "markers",
                        "name": "585.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5e0dad",
                        "bsrc": "peter.capcara:188:7f2e3f",
                        "csrc": "peter.capcara:188:11d517",
                        "mode": "markers",
                        "name": "584.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:5b4fbd",
                        "bsrc": "peter.capcara:188:bb1952",
                        "csrc": "peter.capcara:188:511bb1",
                        "mode": "markers",
                        "name": "583.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:b6e93e",
                        "bsrc": "peter.capcara:188:196040",
                        "csrc": "peter.capcara:188:29aa31",
                        "mode": "markers",
                        "name": "582.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:9b9cb7",
                        "bsrc": "peter.capcara:188:1752b9",
                        "csrc": "peter.capcara:188:cb8ecc",
                        "mode": "markers",
                        "name": "581.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:41760f",
                        "bsrc": "peter.capcara:188:a333f0",
                        "csrc": "peter.capcara:188:1b9e73",
                        "mode": "markers",
                        "name": "580.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:e115d8",
                        "bsrc": "peter.capcara:188:8818c5",
                        "csrc": "peter.capcara:188:c3389a",
                        "mode": "markers",
                        "name": "579.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:2a4255",
                        "bsrc": "peter.capcara:188:9cad5f",
                        "csrc": "peter.capcara:188:99949d",
                        "mode": "markers",
                        "name": "578.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:188:510ec9",
                        "bsrc": "peter.capcara:188:4ec138",
                        "csrc": "peter.capcara:188:1392fe",
                        "mode": "markers",
                        "name": "577.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:188:d0aa13"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:188:5a9d86"
                        },
                        "columnwidthsrc": "peter.capcara:188:712733"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:11:02.575808Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/187.embed",
            "fid": "peter.capcara:187",
            "filename": "Plot 187",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/187/9_LLXQKHDSKR4H2LDYWZSYO09WSSR3XQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/187/2_KDB6UDV5C36C6G0N5MXVOP3EEMNQNX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/187/8_N4H881V7LYAQ39PE8PP575JA6QI0AO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/187/9_LLXQKHDSKR4H2LDYWZSYO09WSSR3XQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:187",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:187",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/187/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:11:02.588Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/187/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:186:1f69a0",
                        "bsrc": "peter.capcara:186:9ac7f8",
                        "csrc": "peter.capcara:186:7ea8e6",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:186:c9ac6e",
                        "bsrc": "peter.capcara:186:35ce9e",
                        "csrc": "peter.capcara:186:b43fe9",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:186:a09095",
                        "bsrc": "peter.capcara:186:00a26c",
                        "csrc": "peter.capcara:186:6ad595",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:186:0d88d1",
                        "bsrc": "peter.capcara:186:879fb4",
                        "csrc": "peter.capcara:186:69bb21",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:186:e8f14b",
                        "bsrc": "peter.capcara:186:937914",
                        "csrc": "peter.capcara:186:942b76",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:186:fe88c7",
                        "bsrc": "peter.capcara:186:49fc5c",
                        "csrc": "peter.capcara:186:b58a16",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:186:916c35",
                        "bsrc": "peter.capcara:186:7368de",
                        "csrc": "peter.capcara:186:9340e9",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:186:687af9",
                        "bsrc": "peter.capcara:186:1eaa2b",
                        "csrc": "peter.capcara:186:88a992",
                        "mode": "markers",
                        "name": "3270.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f8714d",
                        "bsrc": "peter.capcara:186:6d9bb9",
                        "csrc": "peter.capcara:186:d3dbb2",
                        "mode": "markers",
                        "name": "650.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:a12ded",
                        "bsrc": "peter.capcara:186:4ef2bd",
                        "csrc": "peter.capcara:186:87e350",
                        "mode": "markers",
                        "name": "649.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:6f965f",
                        "bsrc": "peter.capcara:186:b9ca29",
                        "csrc": "peter.capcara:186:49e4c8",
                        "mode": "markers",
                        "name": "648.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:eb953c",
                        "bsrc": "peter.capcara:186:ad378e",
                        "csrc": "peter.capcara:186:afb21e",
                        "mode": "markers",
                        "name": "647.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:574825",
                        "bsrc": "peter.capcara:186:d810e9",
                        "csrc": "peter.capcara:186:b34fe5",
                        "mode": "markers",
                        "name": "646.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:038eb1",
                        "bsrc": "peter.capcara:186:b433db",
                        "csrc": "peter.capcara:186:bbdade",
                        "mode": "markers",
                        "name": "645.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:ad2728",
                        "bsrc": "peter.capcara:186:605b3d",
                        "csrc": "peter.capcara:186:53d285",
                        "mode": "markers",
                        "name": "644.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:8a7cf8",
                        "bsrc": "peter.capcara:186:c482b2",
                        "csrc": "peter.capcara:186:d13338",
                        "mode": "markers",
                        "name": "643.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:d75338",
                        "bsrc": "peter.capcara:186:b24076",
                        "csrc": "peter.capcara:186:dc623d",
                        "mode": "markers",
                        "name": "642.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:276c70",
                        "bsrc": "peter.capcara:186:d436ea",
                        "csrc": "peter.capcara:186:18c543",
                        "mode": "markers",
                        "name": "641.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:726bd1",
                        "bsrc": "peter.capcara:186:ccfb61",
                        "csrc": "peter.capcara:186:44ec91",
                        "mode": "markers",
                        "name": "640.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:89727f",
                        "bsrc": "peter.capcara:186:428da6",
                        "csrc": "peter.capcara:186:9acf5e",
                        "mode": "markers",
                        "name": "639.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:1a07f1",
                        "bsrc": "peter.capcara:186:72b428",
                        "csrc": "peter.capcara:186:94bb2a",
                        "mode": "markers",
                        "name": "638.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:782fe7",
                        "bsrc": "peter.capcara:186:278552",
                        "csrc": "peter.capcara:186:782fb6",
                        "mode": "markers",
                        "name": "637.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:4e363d",
                        "bsrc": "peter.capcara:186:6852d7",
                        "csrc": "peter.capcara:186:604cc4",
                        "mode": "markers",
                        "name": "636.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:adfb39",
                        "bsrc": "peter.capcara:186:9b88bc",
                        "csrc": "peter.capcara:186:b599c4",
                        "mode": "markers",
                        "name": "635.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:e76468",
                        "bsrc": "peter.capcara:186:aaff5e",
                        "csrc": "peter.capcara:186:7c0a22",
                        "mode": "markers",
                        "name": "634.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:2037ad",
                        "bsrc": "peter.capcara:186:40be64",
                        "csrc": "peter.capcara:186:b1bc6e",
                        "mode": "markers",
                        "name": "633.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:0f14ef",
                        "bsrc": "peter.capcara:186:e8573b",
                        "csrc": "peter.capcara:186:0335fd",
                        "mode": "markers",
                        "name": "632.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:2c6f2b",
                        "bsrc": "peter.capcara:186:cc1099",
                        "csrc": "peter.capcara:186:5db047",
                        "mode": "markers",
                        "name": "631.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f4424d",
                        "bsrc": "peter.capcara:186:74095a",
                        "csrc": "peter.capcara:186:93029d",
                        "mode": "markers",
                        "name": "630.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:d37ec9",
                        "bsrc": "peter.capcara:186:7fefd6",
                        "csrc": "peter.capcara:186:d24fd0",
                        "mode": "markers",
                        "name": "629.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:51cfec",
                        "bsrc": "peter.capcara:186:d2e792",
                        "csrc": "peter.capcara:186:07e439",
                        "mode": "markers",
                        "name": "628.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:a5c0a0",
                        "bsrc": "peter.capcara:186:a61d66",
                        "csrc": "peter.capcara:186:554826",
                        "mode": "markers",
                        "name": "627.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:afcc49",
                        "bsrc": "peter.capcara:186:62f48b",
                        "csrc": "peter.capcara:186:d5d46d",
                        "mode": "markers",
                        "name": "626.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:2b1c99",
                        "bsrc": "peter.capcara:186:bcec1c",
                        "csrc": "peter.capcara:186:96796e",
                        "mode": "markers",
                        "name": "625.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:b6a58e",
                        "bsrc": "peter.capcara:186:69f4b9",
                        "csrc": "peter.capcara:186:3e12e5",
                        "mode": "markers",
                        "name": "624.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:46844f",
                        "bsrc": "peter.capcara:186:005a05",
                        "csrc": "peter.capcara:186:65e23c",
                        "mode": "markers",
                        "name": "623.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:1c59f4",
                        "bsrc": "peter.capcara:186:67aae9",
                        "csrc": "peter.capcara:186:7e78c6",
                        "mode": "markers",
                        "name": "622.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f30baa",
                        "bsrc": "peter.capcara:186:c81730",
                        "csrc": "peter.capcara:186:c85b83",
                        "mode": "markers",
                        "name": "621.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:574cc8",
                        "bsrc": "peter.capcara:186:642908",
                        "csrc": "peter.capcara:186:403d71",
                        "mode": "markers",
                        "name": "620.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:ffbda4",
                        "bsrc": "peter.capcara:186:dfcca1",
                        "csrc": "peter.capcara:186:9b1a97",
                        "mode": "markers",
                        "name": "619.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:3d9a7b",
                        "bsrc": "peter.capcara:186:f54eaa",
                        "csrc": "peter.capcara:186:d7a025",
                        "mode": "markers",
                        "name": "618.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f261bc",
                        "bsrc": "peter.capcara:186:a5dde7",
                        "csrc": "peter.capcara:186:5bf88d",
                        "mode": "markers",
                        "name": "617.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:c88a0e",
                        "bsrc": "peter.capcara:186:b0316e",
                        "csrc": "peter.capcara:186:f899f8",
                        "mode": "markers",
                        "name": "616.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:043caa",
                        "bsrc": "peter.capcara:186:e60f64",
                        "csrc": "peter.capcara:186:c5ec37",
                        "mode": "markers",
                        "name": "615.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:21de88",
                        "bsrc": "peter.capcara:186:b3d5dd",
                        "csrc": "peter.capcara:186:0db37d",
                        "mode": "markers",
                        "name": "614.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:ef83f5",
                        "bsrc": "peter.capcara:186:846c76",
                        "csrc": "peter.capcara:186:738747",
                        "mode": "markers",
                        "name": "613.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:b5d412",
                        "bsrc": "peter.capcara:186:5866e0",
                        "csrc": "peter.capcara:186:a2e8ae",
                        "mode": "markers",
                        "name": "612.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:5b4161",
                        "bsrc": "peter.capcara:186:dad661",
                        "csrc": "peter.capcara:186:136317",
                        "mode": "markers",
                        "name": "611.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:e0a033",
                        "bsrc": "peter.capcara:186:1cd615",
                        "csrc": "peter.capcara:186:737905",
                        "mode": "markers",
                        "name": "610.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:6095ef",
                        "bsrc": "peter.capcara:186:70388a",
                        "csrc": "peter.capcara:186:55171e",
                        "mode": "markers",
                        "name": "609.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:1a1f77",
                        "bsrc": "peter.capcara:186:d21a06",
                        "csrc": "peter.capcara:186:49ab67",
                        "mode": "markers",
                        "name": "608.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:01bc3e",
                        "bsrc": "peter.capcara:186:b062af",
                        "csrc": "peter.capcara:186:41211a",
                        "mode": "markers",
                        "name": "607.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:92ac78",
                        "bsrc": "peter.capcara:186:5ab94f",
                        "csrc": "peter.capcara:186:f270bf",
                        "mode": "markers",
                        "name": "606.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:7d2769",
                        "bsrc": "peter.capcara:186:f0f417",
                        "csrc": "peter.capcara:186:72e77a",
                        "mode": "markers",
                        "name": "605.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f60ecf",
                        "bsrc": "peter.capcara:186:1e80dc",
                        "csrc": "peter.capcara:186:f71519",
                        "mode": "markers",
                        "name": "604.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:616a52",
                        "bsrc": "peter.capcara:186:0d4bef",
                        "csrc": "peter.capcara:186:52b711",
                        "mode": "markers",
                        "name": "603.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:b28b67",
                        "bsrc": "peter.capcara:186:fe40de",
                        "csrc": "peter.capcara:186:273ca9",
                        "mode": "markers",
                        "name": "602.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:9f79a5",
                        "bsrc": "peter.capcara:186:8194ae",
                        "csrc": "peter.capcara:186:95feaa",
                        "mode": "markers",
                        "name": "601.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:aaf5a4",
                        "bsrc": "peter.capcara:186:da4181",
                        "csrc": "peter.capcara:186:711694",
                        "mode": "markers",
                        "name": "600.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:47f32f",
                        "bsrc": "peter.capcara:186:5ae4ad",
                        "csrc": "peter.capcara:186:650c22",
                        "mode": "markers",
                        "name": "599.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:d09e31",
                        "bsrc": "peter.capcara:186:780b93",
                        "csrc": "peter.capcara:186:1b0ca4",
                        "mode": "markers",
                        "name": "598.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:facf17",
                        "bsrc": "peter.capcara:186:d35f40",
                        "csrc": "peter.capcara:186:306d5d",
                        "mode": "markers",
                        "name": "597.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:85a047",
                        "bsrc": "peter.capcara:186:431aa1",
                        "csrc": "peter.capcara:186:487b60",
                        "mode": "markers",
                        "name": "596.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:0e623f",
                        "bsrc": "peter.capcara:186:efce12",
                        "csrc": "peter.capcara:186:a9b34c",
                        "mode": "markers",
                        "name": "595.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:26b020",
                        "bsrc": "peter.capcara:186:d7582a",
                        "csrc": "peter.capcara:186:779955",
                        "mode": "markers",
                        "name": "594.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:0e55f5",
                        "bsrc": "peter.capcara:186:1f345a",
                        "csrc": "peter.capcara:186:96968f",
                        "mode": "markers",
                        "name": "593.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:4c7483",
                        "bsrc": "peter.capcara:186:f2adde",
                        "csrc": "peter.capcara:186:848131",
                        "mode": "markers",
                        "name": "592.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:e0f88e",
                        "bsrc": "peter.capcara:186:2824b4",
                        "csrc": "peter.capcara:186:a2d892",
                        "mode": "markers",
                        "name": "591.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:66f2ca",
                        "bsrc": "peter.capcara:186:f7b414",
                        "csrc": "peter.capcara:186:d3f917",
                        "mode": "markers",
                        "name": "590.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:943298",
                        "bsrc": "peter.capcara:186:48b983",
                        "csrc": "peter.capcara:186:867468",
                        "mode": "markers",
                        "name": "589.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:a74aa6",
                        "bsrc": "peter.capcara:186:5a619d",
                        "csrc": "peter.capcara:186:1acb24",
                        "mode": "markers",
                        "name": "588.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:867088",
                        "bsrc": "peter.capcara:186:cfce59",
                        "csrc": "peter.capcara:186:b47ef3",
                        "mode": "markers",
                        "name": "587.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:c79fee",
                        "bsrc": "peter.capcara:186:cc03ce",
                        "csrc": "peter.capcara:186:04c929",
                        "mode": "markers",
                        "name": "586.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:9abbf5",
                        "bsrc": "peter.capcara:186:b45890",
                        "csrc": "peter.capcara:186:ab8d3f",
                        "mode": "markers",
                        "name": "585.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:eec4dc",
                        "bsrc": "peter.capcara:186:6b0531",
                        "csrc": "peter.capcara:186:4e7022",
                        "mode": "markers",
                        "name": "584.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f8e2c3",
                        "bsrc": "peter.capcara:186:6f375b",
                        "csrc": "peter.capcara:186:2eeda7",
                        "mode": "markers",
                        "name": "583.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:07a2e4",
                        "bsrc": "peter.capcara:186:007849",
                        "csrc": "peter.capcara:186:1e4a0e",
                        "mode": "markers",
                        "name": "582.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:f4fed4",
                        "bsrc": "peter.capcara:186:3561e1",
                        "csrc": "peter.capcara:186:399507",
                        "mode": "markers",
                        "name": "581.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:bc32c5",
                        "bsrc": "peter.capcara:186:f21058",
                        "csrc": "peter.capcara:186:ba00e1",
                        "mode": "markers",
                        "name": "580.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:58ab4f",
                        "bsrc": "peter.capcara:186:fec83b",
                        "csrc": "peter.capcara:186:15522c",
                        "mode": "markers",
                        "name": "579.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:d16557",
                        "bsrc": "peter.capcara:186:e78b36",
                        "csrc": "peter.capcara:186:f88a95",
                        "mode": "markers",
                        "name": "578.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:186:75590f",
                        "bsrc": "peter.capcara:186:da6aad",
                        "csrc": "peter.capcara:186:abd42d",
                        "mode": "markers",
                        "name": "577.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:186:5e4473"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:186:65e0a6"
                        },
                        "columnwidthsrc": "peter.capcara:186:36df54"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:10:09.073559Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/185.embed",
            "fid": "peter.capcara:185",
            "filename": "Plot 185",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/185/9_VFCFBI2MTTTRXDZV0PF5OM86AX1KE0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/185/2_WQ6DWMFU8I4WHT380PB8FSDOCOLDPM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/185/8_ECECR5EZQ2J8YVI1WSBHNW6IMV3N0Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/185/9_VFCFBI2MTTTRXDZV0PF5OM86AX1KE0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:185",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:185",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/185/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:10:09.084Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/185/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:184:8625bd",
                        "bsrc": "peter.capcara:184:1a2f12",
                        "csrc": "peter.capcara:184:ec4cff",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:184:495847",
                        "bsrc": "peter.capcara:184:f562cc",
                        "csrc": "peter.capcara:184:fdfed3",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:184:d98f3c",
                        "bsrc": "peter.capcara:184:6a57bf",
                        "csrc": "peter.capcara:184:00edd4",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:184:e0a15e",
                        "bsrc": "peter.capcara:184:533d1d",
                        "csrc": "peter.capcara:184:d37f08",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:184:630188",
                        "bsrc": "peter.capcara:184:a1c6b6",
                        "csrc": "peter.capcara:184:9737bf",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:184:03cc24",
                        "bsrc": "peter.capcara:184:bb4855",
                        "csrc": "peter.capcara:184:7daba8",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:184:d44793",
                        "bsrc": "peter.capcara:184:733147",
                        "csrc": "peter.capcara:184:c6a09e",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:184:fb3853",
                        "bsrc": "peter.capcara:184:80e110",
                        "csrc": "peter.capcara:184:01812d",
                        "mode": "markers",
                        "name": "3270.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:df2c07",
                        "bsrc": "peter.capcara:184:2fb006",
                        "csrc": "peter.capcara:184:dea8c3",
                        "mode": "markers",
                        "name": "650.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:4f75c7",
                        "bsrc": "peter.capcara:184:684b59",
                        "csrc": "peter.capcara:184:8de0fe",
                        "mode": "markers",
                        "name": "649.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:3f7bff",
                        "bsrc": "peter.capcara:184:90ff28",
                        "csrc": "peter.capcara:184:6643b4",
                        "mode": "markers",
                        "name": "648.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:df285a",
                        "bsrc": "peter.capcara:184:f367d5",
                        "csrc": "peter.capcara:184:65cd05",
                        "mode": "markers",
                        "name": "647.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:e9ad1a",
                        "bsrc": "peter.capcara:184:9121e4",
                        "csrc": "peter.capcara:184:b29a82",
                        "mode": "markers",
                        "name": "646.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:51bc87",
                        "bsrc": "peter.capcara:184:94f432",
                        "csrc": "peter.capcara:184:d90bb7",
                        "mode": "markers",
                        "name": "645.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:aa74ec",
                        "bsrc": "peter.capcara:184:57d3c7",
                        "csrc": "peter.capcara:184:9901a3",
                        "mode": "markers",
                        "name": "644.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:b24752",
                        "bsrc": "peter.capcara:184:c08c5d",
                        "csrc": "peter.capcara:184:294af6",
                        "mode": "markers",
                        "name": "643.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:a92f07",
                        "bsrc": "peter.capcara:184:6ac482",
                        "csrc": "peter.capcara:184:d7d03d",
                        "mode": "markers",
                        "name": "642.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:09b92a",
                        "bsrc": "peter.capcara:184:d6562f",
                        "csrc": "peter.capcara:184:16b7bf",
                        "mode": "markers",
                        "name": "641.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:3c4254",
                        "bsrc": "peter.capcara:184:f30794",
                        "csrc": "peter.capcara:184:b542d9",
                        "mode": "markers",
                        "name": "640.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:4b8e25",
                        "bsrc": "peter.capcara:184:a48942",
                        "csrc": "peter.capcara:184:41e817",
                        "mode": "markers",
                        "name": "639.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:4b38f3",
                        "bsrc": "peter.capcara:184:a35f36",
                        "csrc": "peter.capcara:184:5fc7c9",
                        "mode": "markers",
                        "name": "638.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:49be14",
                        "bsrc": "peter.capcara:184:0e5f4c",
                        "csrc": "peter.capcara:184:ec7d06",
                        "mode": "markers",
                        "name": "637.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:e1ef3c",
                        "bsrc": "peter.capcara:184:6c3525",
                        "csrc": "peter.capcara:184:b2d47e",
                        "mode": "markers",
                        "name": "636.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:178339",
                        "bsrc": "peter.capcara:184:2716d1",
                        "csrc": "peter.capcara:184:327a57",
                        "mode": "markers",
                        "name": "635.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:975551",
                        "bsrc": "peter.capcara:184:584c63",
                        "csrc": "peter.capcara:184:8b090e",
                        "mode": "markers",
                        "name": "634.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:a8e0e7",
                        "bsrc": "peter.capcara:184:99c3bc",
                        "csrc": "peter.capcara:184:c262a7",
                        "mode": "markers",
                        "name": "633.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:49d579",
                        "bsrc": "peter.capcara:184:eb370e",
                        "csrc": "peter.capcara:184:5f2d68",
                        "mode": "markers",
                        "name": "632.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:5d9da5",
                        "bsrc": "peter.capcara:184:8312d9",
                        "csrc": "peter.capcara:184:cc09b8",
                        "mode": "markers",
                        "name": "631.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:07d8ea",
                        "bsrc": "peter.capcara:184:efe27e",
                        "csrc": "peter.capcara:184:8b56aa",
                        "mode": "markers",
                        "name": "630.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:844f03",
                        "bsrc": "peter.capcara:184:cf6c4e",
                        "csrc": "peter.capcara:184:f554a6",
                        "mode": "markers",
                        "name": "629.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:318e3e",
                        "bsrc": "peter.capcara:184:be1d99",
                        "csrc": "peter.capcara:184:1e0e3a",
                        "mode": "markers",
                        "name": "628.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:a01f5f",
                        "bsrc": "peter.capcara:184:478795",
                        "csrc": "peter.capcara:184:eb7af2",
                        "mode": "markers",
                        "name": "627.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:b001a7",
                        "bsrc": "peter.capcara:184:addfda",
                        "csrc": "peter.capcara:184:0553e7",
                        "mode": "markers",
                        "name": "626.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:4a6cab",
                        "bsrc": "peter.capcara:184:4288c3",
                        "csrc": "peter.capcara:184:fb77c5",
                        "mode": "markers",
                        "name": "625.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:1e6ad6",
                        "bsrc": "peter.capcara:184:4dd3e3",
                        "csrc": "peter.capcara:184:02149d",
                        "mode": "markers",
                        "name": "624.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:a1555a",
                        "bsrc": "peter.capcara:184:484a53",
                        "csrc": "peter.capcara:184:9cf2af",
                        "mode": "markers",
                        "name": "623.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:0320cd",
                        "bsrc": "peter.capcara:184:353b11",
                        "csrc": "peter.capcara:184:60f8ea",
                        "mode": "markers",
                        "name": "622.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:1c8ca9",
                        "bsrc": "peter.capcara:184:37ec27",
                        "csrc": "peter.capcara:184:c1a390",
                        "mode": "markers",
                        "name": "621.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:325abe",
                        "bsrc": "peter.capcara:184:5cc8d7",
                        "csrc": "peter.capcara:184:07fd07",
                        "mode": "markers",
                        "name": "620.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:71c33d",
                        "bsrc": "peter.capcara:184:5b3436",
                        "csrc": "peter.capcara:184:332be1",
                        "mode": "markers",
                        "name": "619.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:c8d268",
                        "bsrc": "peter.capcara:184:5bf84e",
                        "csrc": "peter.capcara:184:f0e0ab",
                        "mode": "markers",
                        "name": "618.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:f647d0",
                        "bsrc": "peter.capcara:184:34f1bd",
                        "csrc": "peter.capcara:184:ec5ffc",
                        "mode": "markers",
                        "name": "617.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:21b8ef",
                        "bsrc": "peter.capcara:184:a54c35",
                        "csrc": "peter.capcara:184:0992c7",
                        "mode": "markers",
                        "name": "616.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:f49040",
                        "bsrc": "peter.capcara:184:3eb063",
                        "csrc": "peter.capcara:184:4958f9",
                        "mode": "markers",
                        "name": "615.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:758afd",
                        "bsrc": "peter.capcara:184:8e0900",
                        "csrc": "peter.capcara:184:80fbe8",
                        "mode": "markers",
                        "name": "614.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:435b7e",
                        "bsrc": "peter.capcara:184:91ff9c",
                        "csrc": "peter.capcara:184:b21b05",
                        "mode": "markers",
                        "name": "613.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:757965",
                        "bsrc": "peter.capcara:184:214aa9",
                        "csrc": "peter.capcara:184:9ba8d8",
                        "mode": "markers",
                        "name": "612.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:66707a",
                        "bsrc": "peter.capcara:184:507157",
                        "csrc": "peter.capcara:184:5ecfe5",
                        "mode": "markers",
                        "name": "611.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:99cf65",
                        "bsrc": "peter.capcara:184:7f42e6",
                        "csrc": "peter.capcara:184:e10c31",
                        "mode": "markers",
                        "name": "610.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:d14b87",
                        "bsrc": "peter.capcara:184:2654c6",
                        "csrc": "peter.capcara:184:24fda6",
                        "mode": "markers",
                        "name": "609.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:434cf3",
                        "bsrc": "peter.capcara:184:7e7b67",
                        "csrc": "peter.capcara:184:d0ad24",
                        "mode": "markers",
                        "name": "608.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:31e9f8",
                        "bsrc": "peter.capcara:184:cacbb0",
                        "csrc": "peter.capcara:184:c467cc",
                        "mode": "markers",
                        "name": "607.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:9b9971",
                        "bsrc": "peter.capcara:184:256588",
                        "csrc": "peter.capcara:184:6ec837",
                        "mode": "markers",
                        "name": "606.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:f8262b",
                        "bsrc": "peter.capcara:184:eacfca",
                        "csrc": "peter.capcara:184:c49f73",
                        "mode": "markers",
                        "name": "605.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:05a798",
                        "bsrc": "peter.capcara:184:0676d1",
                        "csrc": "peter.capcara:184:2984a0",
                        "mode": "markers",
                        "name": "604.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:7585f6",
                        "bsrc": "peter.capcara:184:db6e7c",
                        "csrc": "peter.capcara:184:5dd04c",
                        "mode": "markers",
                        "name": "603.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:307943",
                        "bsrc": "peter.capcara:184:445bb4",
                        "csrc": "peter.capcara:184:957ae1",
                        "mode": "markers",
                        "name": "602.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:e59e86",
                        "bsrc": "peter.capcara:184:73d2bb",
                        "csrc": "peter.capcara:184:d22f5d",
                        "mode": "markers",
                        "name": "601.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:24323e",
                        "bsrc": "peter.capcara:184:4de94d",
                        "csrc": "peter.capcara:184:c5a621",
                        "mode": "markers",
                        "name": "600.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:ebe2da",
                        "bsrc": "peter.capcara:184:c8610d",
                        "csrc": "peter.capcara:184:99500c",
                        "mode": "markers",
                        "name": "599.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:ea7230",
                        "bsrc": "peter.capcara:184:d09c52",
                        "csrc": "peter.capcara:184:3d2a0d",
                        "mode": "markers",
                        "name": "598.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:080d11",
                        "bsrc": "peter.capcara:184:b03f7c",
                        "csrc": "peter.capcara:184:0a7f0a",
                        "mode": "markers",
                        "name": "597.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:8c9def",
                        "bsrc": "peter.capcara:184:608299",
                        "csrc": "peter.capcara:184:d992f0",
                        "mode": "markers",
                        "name": "596.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:1bd275",
                        "bsrc": "peter.capcara:184:b83f86",
                        "csrc": "peter.capcara:184:3a2a74",
                        "mode": "markers",
                        "name": "595.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:9143f4",
                        "bsrc": "peter.capcara:184:694fec",
                        "csrc": "peter.capcara:184:fa2349",
                        "mode": "markers",
                        "name": "594.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:62b7bf",
                        "bsrc": "peter.capcara:184:4ff9c0",
                        "csrc": "peter.capcara:184:68e650",
                        "mode": "markers",
                        "name": "593.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:ef1541",
                        "bsrc": "peter.capcara:184:1b5b3e",
                        "csrc": "peter.capcara:184:7053af",
                        "mode": "markers",
                        "name": "592.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:c2521f",
                        "bsrc": "peter.capcara:184:cdc9dd",
                        "csrc": "peter.capcara:184:d1e8aa",
                        "mode": "markers",
                        "name": "591.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:a82f62",
                        "bsrc": "peter.capcara:184:e41505",
                        "csrc": "peter.capcara:184:c4449a",
                        "mode": "markers",
                        "name": "590.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:b8b355",
                        "bsrc": "peter.capcara:184:2bec09",
                        "csrc": "peter.capcara:184:5754a4",
                        "mode": "markers",
                        "name": "589.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:6533b7",
                        "bsrc": "peter.capcara:184:fcf769",
                        "csrc": "peter.capcara:184:cb3ce2",
                        "mode": "markers",
                        "name": "588.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:02f996",
                        "bsrc": "peter.capcara:184:452af4",
                        "csrc": "peter.capcara:184:7a1572",
                        "mode": "markers",
                        "name": "587.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:455fa1",
                        "bsrc": "peter.capcara:184:7289ea",
                        "csrc": "peter.capcara:184:f3cfd3",
                        "mode": "markers",
                        "name": "586.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:7cb207",
                        "bsrc": "peter.capcara:184:5b9c05",
                        "csrc": "peter.capcara:184:c46dc2",
                        "mode": "markers",
                        "name": "585.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:8468e5",
                        "bsrc": "peter.capcara:184:6053db",
                        "csrc": "peter.capcara:184:32ea61",
                        "mode": "markers",
                        "name": "584.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:dd8859",
                        "bsrc": "peter.capcara:184:43d49e",
                        "csrc": "peter.capcara:184:39cf8d",
                        "mode": "markers",
                        "name": "583.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:86a65f",
                        "bsrc": "peter.capcara:184:949739",
                        "csrc": "peter.capcara:184:36a85c",
                        "mode": "markers",
                        "name": "582.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:ddec0b",
                        "bsrc": "peter.capcara:184:c424db",
                        "csrc": "peter.capcara:184:8a0b9c",
                        "mode": "markers",
                        "name": "581.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:8ab5fb",
                        "bsrc": "peter.capcara:184:dc540f",
                        "csrc": "peter.capcara:184:773b06",
                        "mode": "markers",
                        "name": "580.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:ab4c67",
                        "bsrc": "peter.capcara:184:3a5fc3",
                        "csrc": "peter.capcara:184:c9a85b",
                        "mode": "markers",
                        "name": "579.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:9cfa5b",
                        "bsrc": "peter.capcara:184:5488c8",
                        "csrc": "peter.capcara:184:cb8e48",
                        "mode": "markers",
                        "name": "578.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:184:db3879",
                        "bsrc": "peter.capcara:184:ae31d8",
                        "csrc": "peter.capcara:184:f88544",
                        "mode": "markers",
                        "name": "577.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:184:7dea72"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:184:97a6c2"
                        },
                        "columnwidthsrc": "peter.capcara:184:bbe315"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:04:41.053811Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dm299/1.embed",
            "fid": "Dm299:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dm299/1/9_1O6O4HZCF5EJOP5881RTNGRMQHPX7C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dm299/1/2_AGZKCG03PTYL7BGT9ASSU00SAWDUZ8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dm299/1/8_SJFVDV8AVSD2XRKK0J230RT9Q9J1DF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dm299/1/9_1O6O4HZCF5EJOP5881RTNGRMQHPX7C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dm299:1",
                "plots": "https://api.plotly.com/v2/plots/Dm299:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Dm299"
            },
            "owner": "Dm299",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Dm299/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:04:41.065Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dm299/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Anul",
                                "y": "Thailanda"
                            }
                        },
                        "mode": "lines",
                        "name": "Thailanda",
                        "type": "scatter",
                        "xsrc": "Dm299:0:69e913",
                        "ysrc": "Dm299:0:7c0e54"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Anul",
                                "y": "Filipine"
                            }
                        },
                        "mode": "lines",
                        "name": "Filipine",
                        "type": "scatter",
                        "xsrc": "Dm299:0:69e913",
                        "ysrc": "Dm299:0:b94122",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Anul",
                                "y": "Malaezia"
                            }
                        },
                        "mode": "lines",
                        "name": "Malaezia",
                        "type": "scatter",
                        "xsrc": "Dm299:0:69e913",
                        "ysrc": "Dm299:0:022666",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Anul",
                                "y": "Singapore"
                            }
                        },
                        "mode": "lines",
                        "name": "Singapore",
                        "type": "scatter",
                        "xsrc": "Dm299:0:69e913",
                        "ysrc": "Dm299:0:ec8491",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Anul",
                                "y": "Coreea de Sud"
                            }
                        },
                        "mode": "lines",
                        "name": "Coreea de Sud",
                        "type": "scatter",
                        "xsrc": "Dm299:0:69e913",
                        "ysrc": "Dm299:0:7e9d05",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Variatia procentuala a monedei nationale impotriva dolarului american (USD), raportata la 1995"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1995,
                            2005
                        ],
                        "title": {
                            "text": "Anul"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.42850569172222225,
                            1.0356030972777779
                        ],
                        "title": {
                            "text": "Variatia %"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dm299",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.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": "2024-04-19 09:04:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dm299",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T09:00:41.219508Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran4/1.embed",
            "fid": "kiran4:1",
            "filename": "MassDistrubution_pMSSM",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kiran4/1/9_0MT5S2AWK9XYWS0JFNVIJ6XI8P82HR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kiran4/1/2_VUCUMFZGLL5XBHDDURMM91QMGNKHPD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kiran4/1/8_DZHEB65HKDVZ3OQUBV9JQ2DBSSKKM1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kiran4/1/9_0MT5S2AWK9XYWS0JFNVIJ6XI8P82HR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran4:1",
                "plots": "https://api.plotly.com/v2/plots/kiran4:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran4"
            },
            "owner": "kiran4",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kiran4/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:04:35.673Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran4/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": " Model Points",
                        "type": "scatter",
                        "xsrc": "kiran4:2:502be9",
                        "ysrc": "kiran4:2:0941cd",
                        "marker": {
                            "line": {
                                "color": "DarkSlateGrey",
                                "width": 2
                            },
                            "size": 12
                        },
                        "textsrc": "kiran4:2:5eed15",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "blue"
                        },
                        "mode": "lines",
                        "name": "ΔM = 0 (m_t = m_chi)",
                        "type": "scatter",
                        "xsrc": "kiran4:2:0a0cc3",
                        "ysrc": "kiran4:2:fdffc3",
                        "textsrc": "kiran4:2:533c22",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "green"
                        },
                        "mode": "lines",
                        "name": "ΔM = Mb + Mw",
                        "type": "scatter",
                        "xsrc": "kiran4:2:e001f7",
                        "ysrc": "kiran4:2:aea02d",
                        "textsrc": "kiran4:2:d8d4ee",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "red"
                        },
                        "mode": "lines",
                        "name": "ΔM = Mt",
                        "type": "scatter",
                        "xsrc": "kiran4:2:53f1b4",
                        "ysrc": "kiran4:2:ef8c0c",
                        "textsrc": "kiran4:2:0e1909",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Scatter Plot of Stop vs. Neutralino Mass"
                    },
                    "xaxis": {
                        "range": [
                            400,
                            1000
                        ],
                        "title": {
                            "text": "m_t_1 (GeV)"
                        }
                    },
                    "yaxis": {
                        "range": [
                            0,
                            800
                        ],
                        "title": {
                            "text": "m_chi_10 (GeV)"
                        }
                    },
                    "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": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran4",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.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": "2024-04-19 08:55:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran4",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}