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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI2KzIwJTNBMTQlM0E0NS43MjU1NjglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yNisyMCUzQTU1JTNBMzQuOTA5MTM0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-26T20:55:34.909134Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~omarzaghloul39/4.embed",
            "fid": "omarzaghloul39:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/4/9_GZID0CFUEJO6EIZHLL888GB9PVXKB8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/4/2_ZQ3TLV52Y5NJOUAAIM6X6MA05PPL3F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/4/8_Z5AWBFPZNCRG53U948DJTHEO0AW4EX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/4/9_GZID0CFUEJO6EIZHLL888GB9PVXKB8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/omarzaghloul39:4",
                "plots": "https://api.plotly.com/v2/plots/omarzaghloul39:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=omarzaghloul39"
            },
            "owner": "omarzaghloul39",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~omarzaghloul39/4/",
            "world_readable": true,
            "date_modified": "2024-03-26T21:01:35.841Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~omarzaghloul39/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TIME ",
                                "y": "Black Market"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Black market",
                        "type": "scatter",
                        "xsrc": "omarzaghloul39:2:5c3e5a",
                        "ysrc": "omarzaghloul39:2:654d9f",
                        "marker": {
                            "size": 8
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TIME ",
                                "y": "Officail Market"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Officail Price",
                        "type": "scatter",
                        "xsrc": "omarzaghloul39:2:5c3e5a",
                        "ysrc": "omarzaghloul39:2:a53ee9",
                        "marker": {
                            "size": 9
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -1.1685772083614296,
                            19.16857720836143
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            46.55820326548227,
                            47.98954901819751
                        ],
                        "title": {
                            "text": "Price"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~omarzaghloul39",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-22 19:22:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "omarzaghloul39",
                "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-03-26T20:55:34.296866Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~omarzaghloul39/3.embed",
            "fid": "omarzaghloul39:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/3/9_GFKGPDH3S0O2J6PXPM017AHZ3V53D0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/3/2_29U8E8PWK6TXYDDZYBQMP05JU9EJ0P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/3/8_UYL8HUVXJJ3WGLB0RTSX2I85IVDY53.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/omarzaghloul39/3/9_GFKGPDH3S0O2J6PXPM017AHZ3V53D0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/omarzaghloul39:3",
                "plots": "https://api.plotly.com/v2/plots/omarzaghloul39:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=omarzaghloul39"
            },
            "owner": "omarzaghloul39",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~omarzaghloul39/3/",
            "world_readable": true,
            "date_modified": "2024-03-26T21:01:35.841Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~omarzaghloul39/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TIME ",
                                "y": "Black Market"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Black market",
                        "type": "scatter",
                        "xsrc": "omarzaghloul39:2:5c3e5a",
                        "ysrc": "omarzaghloul39:2:654d9f",
                        "marker": {
                            "size": 8
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TIME ",
                                "y": "Officail Market"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Officail Price",
                        "type": "scatter",
                        "xsrc": "omarzaghloul39:2:5c3e5a",
                        "ysrc": "omarzaghloul39:2:a53ee9",
                        "marker": {
                            "size": 9
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -1.1685772083614296,
                            19.16857720836143
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            46.55820326548227,
                            47.98954901819751
                        ],
                        "title": {
                            "text": "Price"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~omarzaghloul39",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-22 19:22:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "omarzaghloul39",
                "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-03-26T20:50:25.099541Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishikamodi2003/1.embed",
            "fid": "ishikamodi2003:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ishikamodi2003/1/9_YW4H83X6UBVF6WS9YS9R9B9KHSI5YD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ishikamodi2003/1/2_POJRLZLE7L5BCV388YZHM1HHXLCEDO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ishikamodi2003/1/8_TI2Y54A99L5S0WSYHKLI3CGD2NBQ5U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ishikamodi2003/1/9_YW4H83X6UBVF6WS9YS9R9B9KHSI5YD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishikamodi2003:1",
                "plots": "https://api.plotly.com/v2/plots/ishikamodi2003:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishikamodi2003"
            },
            "owner": "ishikamodi2003",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishikamodi2003/1/",
            "world_readable": true,
            "date_modified": "2024-03-26T21:04:02.720Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishikamodi2003/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": ""
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "<b>High RPM</b>",
                        "type": "scatter",
                        "xsrc": "ishikamodi2003:0:692c7a",
                        "ysrc": "ishikamodi2003:0:719528",
                        "marker": {
                            "line": {
                                "width": 0
                            }
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#636efa",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "textfont": {
                            "size": 12
                        },
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "connectgaps": false,
                        "textposition": "middle center"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "<b>Low RPM</b>",
                        "type": "scatter",
                        "xsrc": "ishikamodi2003:0:b9de64",
                        "ysrc": "ishikamodi2003:0:478851",
                        "xaxis": "x"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Total Pressure v/s Q"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.027591458873053823,
                            0.2182310948569462
                        ],
                        "title": {
                            "text": "Q (m3/sec)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            465.65155191249994,
                            4095.7875927875
                        ],
                        "title": {
                            "text": "Total Pressure (Pa)"
                        },
                        "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/~ishikamodi2003",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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-03-26 20:49:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishikamodi2003",
                "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-03-26T20:47:54.475459Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shayaan.aqil/3.embed",
            "fid": "shayaan.aqil:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/3/9_1EDR0H3CSWTJJZPSZBVMUCW11V96Q1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/3/2_729ZK3UXEMCLQMT77ZQL7YMND49WFO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/3/8_2LYV7KSG3UCM0EA9FPNAPIC8A64TOG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/3/9_1EDR0H3CSWTJJZPSZBVMUCW11V96Q1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shayaan.aqil:3",
                "plots": "https://api.plotly.com/v2/plots/shayaan.aqil:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=shayaan.aqil"
            },
            "owner": "shayaan.aqil",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~shayaan.aqil/3/",
            "world_readable": true,
            "date_modified": "2024-03-26T20:47:54.486Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shayaan.aqil/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "shayaan.aqil:2:e3f0c2",
                        "ysrc": "shayaan.aqil:2:c6d29b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Voltage Drop Chart"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            5,
                            100
                        ],
                        "title": {
                            "text": "Car Battery Charging Percentage"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.6666666666666667,
                            12.67
                        ],
                        "title": {
                            "text": "EV Station Battery Voltage"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shayaan.aqil",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-26 20:14:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shayaan.aqil",
                "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-03-26T20:36:23.824783Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mkko/29.embed",
            "fid": "mkko:29",
            "filename": "plotly graph map 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mkko/29/9_MOLZ57FPX3V1VJ9Q3GDAQKURTXU6W5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mkko/29/2_6KOE5XDQL9E21JAHAFVKTSI6R3JSW9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mkko/29/8_BTUVT5ADT2E3VPBD9G7Q97HQ8S22BD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mkko/29/9_MOLZ57FPX3V1VJ9Q3GDAQKURTXU6W5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mkko:29",
                "plots": "https://api.plotly.com/v2/plots/mkko:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=mkko"
            },
            "owner": "mkko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 21,
            "web_url": "https://chart-studio.plotly.com/~mkko/29/",
            "world_readable": true,
            "date_modified": "2024-03-26T20:36:23.833Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mkko/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "name": "",
                        "type": "choropleth",
                        "zsrc": "mkko:28:8f4c3d",
                        "coloraxis": "coloraxis",
                        "hovertextsrc": "mkko:28:e0634d",
                        "locationssrc": "mkko:28:2cd79a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>year=1990<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:122d3c",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:498aff",
                                "locationssrc": "mkko:28:91b070",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1990<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1990"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:e1a32a",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:f58423",
                                "locationssrc": "mkko:28:6cfd48",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1991<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1991"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:2822d8",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:ffea8c",
                                "locationssrc": "mkko:28:6ea48b",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1992<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1992"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:2ee5af",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:1743b0",
                                "locationssrc": "mkko:28:1571ea",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1993<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1993"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:04f86a",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:9179b9",
                                "locationssrc": "mkko:28:a06ca1",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1994<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1994"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:4245ae",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:4b934f",
                                "locationssrc": "mkko:28:e6d21e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1995<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1995"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:e75692",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:d5d013",
                                "locationssrc": "mkko:28:79c58a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1996<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1996"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:f0f4b8",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:8f7567",
                                "locationssrc": "mkko:28:b093e5",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1997<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1997"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:73bb9c",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:6073b0",
                                "locationssrc": "mkko:28:fb0916",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1998<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1998"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:5bb0b0",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:493d97",
                                "locationssrc": "mkko:28:3c2a6d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=1999<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1999"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:536743",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:6cd31a",
                                "locationssrc": "mkko:28:33a5d7",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2000<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2000"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:fa2210",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:354e28",
                                "locationssrc": "mkko:28:5b3d95",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2001<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2001"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:1f68ac",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:cb9394",
                                "locationssrc": "mkko:28:a79b7a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2002<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2002"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:9d81f1",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:a55aaa",
                                "locationssrc": "mkko:28:69e0b4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2003<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2003"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:a059a6",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:0c943f",
                                "locationssrc": "mkko:28:5ef8ce",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2004<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2004"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:10e737",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:1c22cb",
                                "locationssrc": "mkko:28:f7890e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2005<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2005"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:8fcaf3",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:e57701",
                                "locationssrc": "mkko:28:08f23e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2006<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2006"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:2cf7d5",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:4f00ed",
                                "locationssrc": "mkko:28:674814",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2007<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2007"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:e55fb7",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:77a2bb",
                                "locationssrc": "mkko:28:b96cae",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2008<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2008"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:9a8d64",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:dd4f4c",
                                "locationssrc": "mkko:28:f1e306",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2009<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2009"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:03de2f",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:af9bf4",
                                "locationssrc": "mkko:28:6fb859",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2010<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2010"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:b9e44d",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:03eb00",
                                "locationssrc": "mkko:28:400414",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2011<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2011"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:5ef431",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:c04c6b",
                                "locationssrc": "mkko:28:7ce694",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2012<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2012"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:762f1c",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:2f17ce",
                                "locationssrc": "mkko:28:c4d875",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2013<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2013"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:812312",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:22fcf0",
                                "locationssrc": "mkko:28:a6eeb6",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2014<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2014"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:6f8af8",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:6214b1",
                                "locationssrc": "mkko:28:c7922f",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2015<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2015"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:20744e",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:4b46de",
                                "locationssrc": "mkko:28:e88c0d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2016<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2016"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:a4621a",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:d33949",
                                "locationssrc": "mkko:28:e77f4f",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2017<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2017"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:027d9c",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:62ced0",
                                "locationssrc": "mkko:28:0179fb",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2018<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2018"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "name": "",
                                "type": "choropleth",
                                "zsrc": "mkko:28:6a04ad",
                                "coloraxis": "coloraxis",
                                "hovertextsrc": "mkko:28:65ceba",
                                "locationssrc": "mkko:28:59ea1c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>year=2019<br>iso_code=%{location}<br>Total Greenhouse Gas=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2019"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {},
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "projection": {
                            "type": "natural earth"
                        }
                    },
                    "title": {
                        "text": "Greenhouse Gas Pollution per Country per Year <br><sup>Total greenhouse gas emissions including land-use change and forestry, measured in million tonnes of carbon dioxide-equivalents.</sup>"
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "1990"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1990",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1991"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1991",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1992"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1992",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1993"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1993",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1994"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1994",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1995"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1995",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1996"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1996",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2000"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2000",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2001"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2001",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2002"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2002",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2003"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2003",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2004"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2004",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2005"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2005",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2006"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2006",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2007"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2007",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2008"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2008",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2009"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2009",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2010"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2010",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2011"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2011",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2012"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2012",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2013"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2013",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2014"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2014",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2015"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2015",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2016"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2016",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2017"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2017",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2018"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2018",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2019"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2019",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "year="
                            }
                        }
                    ],
                    "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",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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
                            }
                        }
                    },
                    "coloraxis": {
                        "colorbar": {
                            "title": {
                                "text": "Total Greenhouse Gas"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0,0,0,0)",
                    "paper_bgcolor": "rgba(0,0,0,0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mkko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-20 01:55:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mkko",
                "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-03-26T20:35:55.589356Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mkko/27.embed",
            "fid": "mkko:27",
            "filename": "plotly graph web 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mkko:27/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/mkko:27/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/mkko:27/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/mkko:27/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mkko:27",
                "plots": "https://api.plotly.com/v2/plots/mkko:27",
                "parent": "https://api.plotly.com/v2/folders/home?user=mkko"
            },
            "owner": "mkko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~mkko/27/",
            "world_readable": true,
            "date_modified": "2024-03-26T20:35:55.600Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mkko/27/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Afghanistan",
                        "type": "bar",
                        "xsrc": "mkko:26:9e0b50",
                        "ysrc": "mkko:26:1630dd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Afghanistan",
                        "offsetgroup": "Afghanistan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Afghanistan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Albania",
                        "type": "bar",
                        "xsrc": "mkko:26:70e652",
                        "ysrc": "mkko:26:bf8ff2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Albania",
                        "offsetgroup": "Albania",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Albania<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Algeria",
                        "type": "bar",
                        "xsrc": "mkko:26:2ae0ae",
                        "ysrc": "mkko:26:fd13a2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Algeria",
                        "offsetgroup": "Algeria",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Algeria<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Andorra",
                        "type": "bar",
                        "xsrc": "mkko:26:5ab905",
                        "ysrc": "mkko:26:f8b658",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Andorra",
                        "offsetgroup": "Andorra",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Andorra<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Angola",
                        "type": "bar",
                        "xsrc": "mkko:26:3f1ab7",
                        "ysrc": "mkko:26:942ef6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Angola",
                        "offsetgroup": "Angola",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Angola<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Anguilla",
                        "type": "bar",
                        "xsrc": "mkko:26:8bcdd0",
                        "ysrc": "mkko:26:be3dcc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Anguilla",
                        "offsetgroup": "Anguilla",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Anguilla<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Antigua and Barbuda",
                        "type": "bar",
                        "xsrc": "mkko:26:f383ba",
                        "ysrc": "mkko:26:2e0a89",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Antigua and Barbuda",
                        "offsetgroup": "Antigua and Barbuda",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Antigua and Barbuda<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Argentina",
                        "type": "bar",
                        "xsrc": "mkko:26:d34d64",
                        "ysrc": "mkko:26:b6b68b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Argentina",
                        "offsetgroup": "Argentina",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Argentina<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Armenia",
                        "type": "bar",
                        "xsrc": "mkko:26:d2bdac",
                        "ysrc": "mkko:26:810d32",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Armenia",
                        "offsetgroup": "Armenia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Armenia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Aruba",
                        "type": "bar",
                        "xsrc": "mkko:26:9761a5",
                        "ysrc": "mkko:26:a702f5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Aruba",
                        "offsetgroup": "Aruba",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Aruba<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Australia",
                        "type": "bar",
                        "xsrc": "mkko:26:471d7c",
                        "ysrc": "mkko:26:7df366",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Australia",
                        "offsetgroup": "Australia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Australia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Austria",
                        "type": "bar",
                        "xsrc": "mkko:26:359dcb",
                        "ysrc": "mkko:26:f3400b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Austria",
                        "offsetgroup": "Austria",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Austria<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Azerbaijan",
                        "type": "bar",
                        "xsrc": "mkko:26:795bf8",
                        "ysrc": "mkko:26:84d9ce",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Azerbaijan",
                        "offsetgroup": "Azerbaijan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Azerbaijan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bahamas",
                        "type": "bar",
                        "xsrc": "mkko:26:77bd6a",
                        "ysrc": "mkko:26:1466fd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bahamas",
                        "offsetgroup": "Bahamas",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bahamas<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bahrain",
                        "type": "bar",
                        "xsrc": "mkko:26:74e951",
                        "ysrc": "mkko:26:caafcb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bahrain",
                        "offsetgroup": "Bahrain",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bahrain<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bangladesh",
                        "type": "bar",
                        "xsrc": "mkko:26:403065",
                        "ysrc": "mkko:26:055f2d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bangladesh",
                        "offsetgroup": "Bangladesh",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bangladesh<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Barbados",
                        "type": "bar",
                        "xsrc": "mkko:26:9c6b7e",
                        "ysrc": "mkko:26:0ba1f9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Barbados",
                        "offsetgroup": "Barbados",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Barbados<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Belarus",
                        "type": "bar",
                        "xsrc": "mkko:26:ee3283",
                        "ysrc": "mkko:26:6e7dfd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Belarus",
                        "offsetgroup": "Belarus",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Belarus<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Belgium",
                        "type": "bar",
                        "xsrc": "mkko:26:ff91e8",
                        "ysrc": "mkko:26:1aa543",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Belgium",
                        "offsetgroup": "Belgium",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Belgium<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Belize",
                        "type": "bar",
                        "xsrc": "mkko:26:eebd2f",
                        "ysrc": "mkko:26:b45fa2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Belize",
                        "offsetgroup": "Belize",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Belize<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Benin",
                        "type": "bar",
                        "xsrc": "mkko:26:639ec2",
                        "ysrc": "mkko:26:ca1274",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Benin",
                        "offsetgroup": "Benin",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Benin<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bermuda",
                        "type": "bar",
                        "xsrc": "mkko:26:e5c61d",
                        "ysrc": "mkko:26:41dfee",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bermuda",
                        "offsetgroup": "Bermuda",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bermuda<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bhutan",
                        "type": "bar",
                        "xsrc": "mkko:26:29be89",
                        "ysrc": "mkko:26:e9de9c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bhutan",
                        "offsetgroup": "Bhutan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bhutan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bolivia",
                        "type": "bar",
                        "xsrc": "mkko:26:b0e46c",
                        "ysrc": "mkko:26:c8b9a2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bolivia",
                        "offsetgroup": "Bolivia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bolivia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bonaire Sint Eustatius and Saba",
                        "type": "bar",
                        "xsrc": "mkko:26:746083",
                        "ysrc": "mkko:26:828fab",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bonaire Sint Eustatius and Saba",
                        "offsetgroup": "Bonaire Sint Eustatius and Saba",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bonaire Sint Eustatius and Saba<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bosnia and Herzegovina",
                        "type": "bar",
                        "xsrc": "mkko:26:018680",
                        "ysrc": "mkko:26:5cb6f5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bosnia and Herzegovina",
                        "offsetgroup": "Bosnia and Herzegovina",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bosnia and Herzegovina<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Botswana",
                        "type": "bar",
                        "xsrc": "mkko:26:f0af19",
                        "ysrc": "mkko:26:95f306",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Botswana",
                        "offsetgroup": "Botswana",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Botswana<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Brazil",
                        "type": "bar",
                        "xsrc": "mkko:26:e1d591",
                        "ysrc": "mkko:26:1ed208",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Brazil",
                        "offsetgroup": "Brazil",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Brazil<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "British Virgin Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:804b0c",
                        "ysrc": "mkko:26:62ac2b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "British Virgin Islands",
                        "offsetgroup": "British Virgin Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=British Virgin Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Brunei",
                        "type": "bar",
                        "xsrc": "mkko:26:85f87b",
                        "ysrc": "mkko:26:649493",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Brunei",
                        "offsetgroup": "Brunei",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Brunei<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Bulgaria",
                        "type": "bar",
                        "xsrc": "mkko:26:765114",
                        "ysrc": "mkko:26:a461eb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Bulgaria",
                        "offsetgroup": "Bulgaria",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Bulgaria<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Burkina Faso",
                        "type": "bar",
                        "xsrc": "mkko:26:e8fc01",
                        "ysrc": "mkko:26:5c7f68",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Burkina Faso",
                        "offsetgroup": "Burkina Faso",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Burkina Faso<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Burundi",
                        "type": "bar",
                        "xsrc": "mkko:26:6b4137",
                        "ysrc": "mkko:26:c70b5f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Burundi",
                        "offsetgroup": "Burundi",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Burundi<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cambodia",
                        "type": "bar",
                        "xsrc": "mkko:26:86b571",
                        "ysrc": "mkko:26:5cb93d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cambodia",
                        "offsetgroup": "Cambodia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cambodia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cameroon",
                        "type": "bar",
                        "xsrc": "mkko:26:696af6",
                        "ysrc": "mkko:26:f8dc9a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cameroon",
                        "offsetgroup": "Cameroon",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cameroon<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Canada",
                        "type": "bar",
                        "xsrc": "mkko:26:33aa74",
                        "ysrc": "mkko:26:1184b7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Canada",
                        "offsetgroup": "Canada",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Canada<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cape Verde",
                        "type": "bar",
                        "xsrc": "mkko:26:5fa60e",
                        "ysrc": "mkko:26:3c197b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cape Verde",
                        "offsetgroup": "Cape Verde",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cape Verde<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Central African Republic",
                        "type": "bar",
                        "xsrc": "mkko:26:53a406",
                        "ysrc": "mkko:26:4d1f19",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Central African Republic",
                        "offsetgroup": "Central African Republic",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Central African Republic<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Chad",
                        "type": "bar",
                        "xsrc": "mkko:26:5afcad",
                        "ysrc": "mkko:26:6481ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Chad",
                        "offsetgroup": "Chad",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Chad<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Chile",
                        "type": "bar",
                        "xsrc": "mkko:26:e18d07",
                        "ysrc": "mkko:26:7e25bf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Chile",
                        "offsetgroup": "Chile",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Chile<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "China",
                        "type": "bar",
                        "xsrc": "mkko:26:6b02dc",
                        "ysrc": "mkko:26:9d7137",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "China",
                        "offsetgroup": "China",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=China<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Colombia",
                        "type": "bar",
                        "xsrc": "mkko:26:3867dc",
                        "ysrc": "mkko:26:cf0437",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Colombia",
                        "offsetgroup": "Colombia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Colombia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Comoros",
                        "type": "bar",
                        "xsrc": "mkko:26:eaaec4",
                        "ysrc": "mkko:26:53aabb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Comoros",
                        "offsetgroup": "Comoros",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Comoros<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Congo",
                        "type": "bar",
                        "xsrc": "mkko:26:053cf6",
                        "ysrc": "mkko:26:caaad9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Congo",
                        "offsetgroup": "Congo",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Congo<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cook Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:bcfc88",
                        "ysrc": "mkko:26:41be52",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cook Islands",
                        "offsetgroup": "Cook Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cook Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Costa Rica",
                        "type": "bar",
                        "xsrc": "mkko:26:ace9e3",
                        "ysrc": "mkko:26:059cd7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Costa Rica",
                        "offsetgroup": "Costa Rica",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Costa Rica<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cote d'Ivoire",
                        "type": "bar",
                        "xsrc": "mkko:26:aa75a9",
                        "ysrc": "mkko:26:9da397",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cote d'Ivoire",
                        "offsetgroup": "Cote d'Ivoire",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cote d'Ivoire<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Croatia",
                        "type": "bar",
                        "xsrc": "mkko:26:ad4147",
                        "ysrc": "mkko:26:9c7560",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Croatia",
                        "offsetgroup": "Croatia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Croatia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cuba",
                        "type": "bar",
                        "xsrc": "mkko:26:d8076c",
                        "ysrc": "mkko:26:416a79",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cuba",
                        "offsetgroup": "Cuba",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cuba<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Curacao",
                        "type": "bar",
                        "xsrc": "mkko:26:26ccf1",
                        "ysrc": "mkko:26:cb79e8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Curacao",
                        "offsetgroup": "Curacao",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Curacao<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Cyprus",
                        "type": "bar",
                        "xsrc": "mkko:26:0b735b",
                        "ysrc": "mkko:26:593f2b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Cyprus",
                        "offsetgroup": "Cyprus",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Cyprus<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Czechia",
                        "type": "bar",
                        "xsrc": "mkko:26:c133d6",
                        "ysrc": "mkko:26:b27143",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Czechia",
                        "offsetgroup": "Czechia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Czechia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Democratic Republic of Congo",
                        "type": "bar",
                        "xsrc": "mkko:26:e31824",
                        "ysrc": "mkko:26:221a33",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Democratic Republic of Congo",
                        "offsetgroup": "Democratic Republic of Congo",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Democratic Republic of Congo<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Denmark",
                        "type": "bar",
                        "xsrc": "mkko:26:e0734a",
                        "ysrc": "mkko:26:d06eb1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Denmark",
                        "offsetgroup": "Denmark",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Denmark<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Djibouti",
                        "type": "bar",
                        "xsrc": "mkko:26:ceddfb",
                        "ysrc": "mkko:26:98066e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Djibouti",
                        "offsetgroup": "Djibouti",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Djibouti<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Dominica",
                        "type": "bar",
                        "xsrc": "mkko:26:9844cd",
                        "ysrc": "mkko:26:f3a462",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Dominica",
                        "offsetgroup": "Dominica",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Dominica<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Dominican Republic",
                        "type": "bar",
                        "xsrc": "mkko:26:e7278a",
                        "ysrc": "mkko:26:463cc7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Dominican Republic",
                        "offsetgroup": "Dominican Republic",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Dominican Republic<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Ecuador",
                        "type": "bar",
                        "xsrc": "mkko:26:d0ac59",
                        "ysrc": "mkko:26:2335f0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Ecuador",
                        "offsetgroup": "Ecuador",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Ecuador<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Egypt",
                        "type": "bar",
                        "xsrc": "mkko:26:5495bc",
                        "ysrc": "mkko:26:2dab05",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Egypt",
                        "offsetgroup": "Egypt",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Egypt<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "El Salvador",
                        "type": "bar",
                        "xsrc": "mkko:26:985a7c",
                        "ysrc": "mkko:26:169f7e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "El Salvador",
                        "offsetgroup": "El Salvador",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=El Salvador<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Equatorial Guinea",
                        "type": "bar",
                        "xsrc": "mkko:26:3c500b",
                        "ysrc": "mkko:26:57dff7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Equatorial Guinea",
                        "offsetgroup": "Equatorial Guinea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Equatorial Guinea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Eritrea",
                        "type": "bar",
                        "xsrc": "mkko:26:e11bd7",
                        "ysrc": "mkko:26:0e88d9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Eritrea",
                        "offsetgroup": "Eritrea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Eritrea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Estonia",
                        "type": "bar",
                        "xsrc": "mkko:26:f52c83",
                        "ysrc": "mkko:26:b85d94",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Estonia",
                        "offsetgroup": "Estonia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Estonia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Eswatini",
                        "type": "bar",
                        "xsrc": "mkko:26:9c5a70",
                        "ysrc": "mkko:26:8be69b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Eswatini",
                        "offsetgroup": "Eswatini",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Eswatini<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Ethiopia",
                        "type": "bar",
                        "xsrc": "mkko:26:8afd26",
                        "ysrc": "mkko:26:8a0062",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Ethiopia",
                        "offsetgroup": "Ethiopia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Ethiopia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Faeroe Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:5b51d2",
                        "ysrc": "mkko:26:78671d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Faeroe Islands",
                        "offsetgroup": "Faeroe Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Faeroe Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Fiji",
                        "type": "bar",
                        "xsrc": "mkko:26:bcf160",
                        "ysrc": "mkko:26:2fdd08",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Fiji",
                        "offsetgroup": "Fiji",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Fiji<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Finland",
                        "type": "bar",
                        "xsrc": "mkko:26:1e89b0",
                        "ysrc": "mkko:26:22eb69",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Finland",
                        "offsetgroup": "Finland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Finland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "France",
                        "type": "bar",
                        "xsrc": "mkko:26:a1e45d",
                        "ysrc": "mkko:26:9d9345",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "France",
                        "offsetgroup": "France",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=France<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "French Guiana",
                        "type": "bar",
                        "xsrc": "mkko:26:25920f",
                        "ysrc": "mkko:26:cc8faa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "French Guiana",
                        "offsetgroup": "French Guiana",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=French Guiana<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "French Polynesia",
                        "type": "bar",
                        "xsrc": "mkko:26:887edf",
                        "ysrc": "mkko:26:53c966",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "French Polynesia",
                        "offsetgroup": "French Polynesia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=French Polynesia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Gabon",
                        "type": "bar",
                        "xsrc": "mkko:26:4c72f4",
                        "ysrc": "mkko:26:95c613",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Gabon",
                        "offsetgroup": "Gabon",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Gabon<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Gambia",
                        "type": "bar",
                        "xsrc": "mkko:26:b9979d",
                        "ysrc": "mkko:26:9793fe",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Gambia",
                        "offsetgroup": "Gambia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Gambia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Georgia",
                        "type": "bar",
                        "xsrc": "mkko:26:0d91e5",
                        "ysrc": "mkko:26:9fa58a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Georgia",
                        "offsetgroup": "Georgia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Georgia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Germany",
                        "type": "bar",
                        "xsrc": "mkko:26:ed365b",
                        "ysrc": "mkko:26:92b254",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Germany",
                        "offsetgroup": "Germany",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Germany<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Ghana",
                        "type": "bar",
                        "xsrc": "mkko:26:e2d12a",
                        "ysrc": "mkko:26:3a9ca8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Ghana",
                        "offsetgroup": "Ghana",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Ghana<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Greece",
                        "type": "bar",
                        "xsrc": "mkko:26:f7ae7b",
                        "ysrc": "mkko:26:4c0617",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Greece",
                        "offsetgroup": "Greece",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Greece<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Greenland",
                        "type": "bar",
                        "xsrc": "mkko:26:9bb9dc",
                        "ysrc": "mkko:26:4f6297",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Greenland",
                        "offsetgroup": "Greenland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Greenland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Grenada",
                        "type": "bar",
                        "xsrc": "mkko:26:1e6695",
                        "ysrc": "mkko:26:0cf960",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Grenada",
                        "offsetgroup": "Grenada",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Grenada<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Guadeloupe",
                        "type": "bar",
                        "xsrc": "mkko:26:37d3bc",
                        "ysrc": "mkko:26:20849f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Guadeloupe",
                        "offsetgroup": "Guadeloupe",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Guadeloupe<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Guatemala",
                        "type": "bar",
                        "xsrc": "mkko:26:39750a",
                        "ysrc": "mkko:26:d173d7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Guatemala",
                        "offsetgroup": "Guatemala",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Guatemala<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Guinea",
                        "type": "bar",
                        "xsrc": "mkko:26:2bf5e3",
                        "ysrc": "mkko:26:0dfa8c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Guinea",
                        "offsetgroup": "Guinea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Guinea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Guinea-Bissau",
                        "type": "bar",
                        "xsrc": "mkko:26:58bf09",
                        "ysrc": "mkko:26:0b5daa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Guinea-Bissau",
                        "offsetgroup": "Guinea-Bissau",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Guinea-Bissau<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Guyana",
                        "type": "bar",
                        "xsrc": "mkko:26:52cde7",
                        "ysrc": "mkko:26:ded2e7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Guyana",
                        "offsetgroup": "Guyana",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Guyana<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Haiti",
                        "type": "bar",
                        "xsrc": "mkko:26:e4472f",
                        "ysrc": "mkko:26:80974e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Haiti",
                        "offsetgroup": "Haiti",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Haiti<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Honduras",
                        "type": "bar",
                        "xsrc": "mkko:26:81ab14",
                        "ysrc": "mkko:26:04719d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Honduras",
                        "offsetgroup": "Honduras",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Honduras<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Hong Kong",
                        "type": "bar",
                        "xsrc": "mkko:26:456124",
                        "ysrc": "mkko:26:22649c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Hong Kong",
                        "offsetgroup": "Hong Kong",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Hong Kong<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Hungary",
                        "type": "bar",
                        "xsrc": "mkko:26:7220b5",
                        "ysrc": "mkko:26:f75424",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Hungary",
                        "offsetgroup": "Hungary",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Hungary<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Iceland",
                        "type": "bar",
                        "xsrc": "mkko:26:7a2226",
                        "ysrc": "mkko:26:6e36a3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Iceland",
                        "offsetgroup": "Iceland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Iceland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "India",
                        "type": "bar",
                        "xsrc": "mkko:26:c5a0c4",
                        "ysrc": "mkko:26:714a78",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "India",
                        "offsetgroup": "India",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=India<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Indonesia",
                        "type": "bar",
                        "xsrc": "mkko:26:b702d5",
                        "ysrc": "mkko:26:f93f8e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Indonesia",
                        "offsetgroup": "Indonesia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Indonesia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Iran",
                        "type": "bar",
                        "xsrc": "mkko:26:dd77a6",
                        "ysrc": "mkko:26:b02056",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Iran",
                        "offsetgroup": "Iran",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Iran<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Iraq",
                        "type": "bar",
                        "xsrc": "mkko:26:fd1f0c",
                        "ysrc": "mkko:26:366338",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Iraq",
                        "offsetgroup": "Iraq",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Iraq<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Ireland",
                        "type": "bar",
                        "xsrc": "mkko:26:2a7d9c",
                        "ysrc": "mkko:26:1113cc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Ireland",
                        "offsetgroup": "Ireland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Ireland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Israel",
                        "type": "bar",
                        "xsrc": "mkko:26:05fe78",
                        "ysrc": "mkko:26:1ed7a0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Israel",
                        "offsetgroup": "Israel",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Israel<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Italy",
                        "type": "bar",
                        "xsrc": "mkko:26:ffbb2d",
                        "ysrc": "mkko:26:125fc3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Italy",
                        "offsetgroup": "Italy",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Italy<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Jamaica",
                        "type": "bar",
                        "xsrc": "mkko:26:049066",
                        "ysrc": "mkko:26:11e304",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Jamaica",
                        "offsetgroup": "Jamaica",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Jamaica<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Japan",
                        "type": "bar",
                        "xsrc": "mkko:26:d7005d",
                        "ysrc": "mkko:26:20b7db",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Japan",
                        "offsetgroup": "Japan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Japan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Jordan",
                        "type": "bar",
                        "xsrc": "mkko:26:047ba8",
                        "ysrc": "mkko:26:8ed0c8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Jordan",
                        "offsetgroup": "Jordan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Jordan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kazakhstan",
                        "type": "bar",
                        "xsrc": "mkko:26:ca66e1",
                        "ysrc": "mkko:26:115458",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kazakhstan",
                        "offsetgroup": "Kazakhstan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kazakhstan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kenya",
                        "type": "bar",
                        "xsrc": "mkko:26:5cfd47",
                        "ysrc": "mkko:26:d32a95",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kenya",
                        "offsetgroup": "Kenya",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kenya<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kiribati",
                        "type": "bar",
                        "xsrc": "mkko:26:ddd7d8",
                        "ysrc": "mkko:26:f0e39b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kiribati",
                        "offsetgroup": "Kiribati",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kiribati<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kosovo",
                        "type": "bar",
                        "xsrc": "mkko:26:828ea3",
                        "ysrc": "mkko:26:aa3e57",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kosovo",
                        "offsetgroup": "Kosovo",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kosovo<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kuwait",
                        "type": "bar",
                        "xsrc": "mkko:26:684455",
                        "ysrc": "mkko:26:7c9fed",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kuwait",
                        "offsetgroup": "Kuwait",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kuwait<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kyrgyzstan",
                        "type": "bar",
                        "xsrc": "mkko:26:4355cd",
                        "ysrc": "mkko:26:49b1f4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Kyrgyzstan",
                        "offsetgroup": "Kyrgyzstan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Kyrgyzstan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Laos",
                        "type": "bar",
                        "xsrc": "mkko:26:fe6516",
                        "ysrc": "mkko:26:a04d72",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Laos",
                        "offsetgroup": "Laos",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Laos<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Latvia",
                        "type": "bar",
                        "xsrc": "mkko:26:4b7e14",
                        "ysrc": "mkko:26:2d6324",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Latvia",
                        "offsetgroup": "Latvia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Latvia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Lebanon",
                        "type": "bar",
                        "xsrc": "mkko:26:55a46c",
                        "ysrc": "mkko:26:4805d2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Lebanon",
                        "offsetgroup": "Lebanon",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Lebanon<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Lesotho",
                        "type": "bar",
                        "xsrc": "mkko:26:34798b",
                        "ysrc": "mkko:26:501e52",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Lesotho",
                        "offsetgroup": "Lesotho",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Lesotho<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Liberia",
                        "type": "bar",
                        "xsrc": "mkko:26:c93f2d",
                        "ysrc": "mkko:26:bf0efe",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Liberia",
                        "offsetgroup": "Liberia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Liberia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Libya",
                        "type": "bar",
                        "xsrc": "mkko:26:5c33f4",
                        "ysrc": "mkko:26:fff31b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Libya",
                        "offsetgroup": "Libya",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Libya<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Liechtenstein",
                        "type": "bar",
                        "xsrc": "mkko:26:20f8f0",
                        "ysrc": "mkko:26:be46d0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Liechtenstein",
                        "offsetgroup": "Liechtenstein",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Liechtenstein<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Lithuania",
                        "type": "bar",
                        "xsrc": "mkko:26:efb617",
                        "ysrc": "mkko:26:e4c687",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Lithuania",
                        "offsetgroup": "Lithuania",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Lithuania<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Luxembourg",
                        "type": "bar",
                        "xsrc": "mkko:26:6ba670",
                        "ysrc": "mkko:26:82bfac",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Luxembourg",
                        "offsetgroup": "Luxembourg",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Luxembourg<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Macao",
                        "type": "bar",
                        "xsrc": "mkko:26:c84e33",
                        "ysrc": "mkko:26:5974e1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Macao",
                        "offsetgroup": "Macao",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Macao<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Madagascar",
                        "type": "bar",
                        "xsrc": "mkko:26:52c354",
                        "ysrc": "mkko:26:6a7f0c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Madagascar",
                        "offsetgroup": "Madagascar",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Madagascar<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Malawi",
                        "type": "bar",
                        "xsrc": "mkko:26:ad8ba1",
                        "ysrc": "mkko:26:f0b994",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Malawi",
                        "offsetgroup": "Malawi",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Malawi<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Malaysia",
                        "type": "bar",
                        "xsrc": "mkko:26:31fd0b",
                        "ysrc": "mkko:26:c24900",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Malaysia",
                        "offsetgroup": "Malaysia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Malaysia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Maldives",
                        "type": "bar",
                        "xsrc": "mkko:26:f2ddea",
                        "ysrc": "mkko:26:247354",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Maldives",
                        "offsetgroup": "Maldives",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Maldives<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mali",
                        "type": "bar",
                        "xsrc": "mkko:26:70725d",
                        "ysrc": "mkko:26:99f287",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mali",
                        "offsetgroup": "Mali",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mali<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Malta",
                        "type": "bar",
                        "xsrc": "mkko:26:8c4b7e",
                        "ysrc": "mkko:26:20135c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Malta",
                        "offsetgroup": "Malta",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Malta<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Marshall Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:2157f9",
                        "ysrc": "mkko:26:2b0fc3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Marshall Islands",
                        "offsetgroup": "Marshall Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Marshall Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Martinique",
                        "type": "bar",
                        "xsrc": "mkko:26:67bf5b",
                        "ysrc": "mkko:26:d5d729",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Martinique",
                        "offsetgroup": "Martinique",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Martinique<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mauritania",
                        "type": "bar",
                        "xsrc": "mkko:26:867d89",
                        "ysrc": "mkko:26:26b3d5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mauritania",
                        "offsetgroup": "Mauritania",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mauritania<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mauritius",
                        "type": "bar",
                        "xsrc": "mkko:26:c3e874",
                        "ysrc": "mkko:26:e391fa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mauritius",
                        "offsetgroup": "Mauritius",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mauritius<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mayotte",
                        "type": "bar",
                        "xsrc": "mkko:26:37dcb2",
                        "ysrc": "mkko:26:034f4f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mayotte",
                        "offsetgroup": "Mayotte",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mayotte<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mexico",
                        "type": "bar",
                        "xsrc": "mkko:26:59b1f0",
                        "ysrc": "mkko:26:095b7b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mexico",
                        "offsetgroup": "Mexico",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mexico<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Micronesia (country)",
                        "type": "bar",
                        "xsrc": "mkko:26:6f1d24",
                        "ysrc": "mkko:26:0c91c1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Micronesia (country)",
                        "offsetgroup": "Micronesia (country)",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Micronesia (country)<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Moldova",
                        "type": "bar",
                        "xsrc": "mkko:26:74f0e9",
                        "ysrc": "mkko:26:896f65",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Moldova",
                        "offsetgroup": "Moldova",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Moldova<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mongolia",
                        "type": "bar",
                        "xsrc": "mkko:26:3f814b",
                        "ysrc": "mkko:26:4900ae",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mongolia",
                        "offsetgroup": "Mongolia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mongolia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Montenegro",
                        "type": "bar",
                        "xsrc": "mkko:26:e30506",
                        "ysrc": "mkko:26:d994c4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Montenegro",
                        "offsetgroup": "Montenegro",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Montenegro<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Montserrat",
                        "type": "bar",
                        "xsrc": "mkko:26:3121e2",
                        "ysrc": "mkko:26:40d1ed",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Montserrat",
                        "offsetgroup": "Montserrat",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Montserrat<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Morocco",
                        "type": "bar",
                        "xsrc": "mkko:26:75e218",
                        "ysrc": "mkko:26:9e1445",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Morocco",
                        "offsetgroup": "Morocco",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Morocco<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mozambique",
                        "type": "bar",
                        "xsrc": "mkko:26:d8428b",
                        "ysrc": "mkko:26:bb81e6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Mozambique",
                        "offsetgroup": "Mozambique",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Mozambique<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Myanmar",
                        "type": "bar",
                        "xsrc": "mkko:26:509208",
                        "ysrc": "mkko:26:851fb8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Myanmar",
                        "offsetgroup": "Myanmar",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Myanmar<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Namibia",
                        "type": "bar",
                        "xsrc": "mkko:26:663421",
                        "ysrc": "mkko:26:3c6520",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Namibia",
                        "offsetgroup": "Namibia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Namibia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Nauru",
                        "type": "bar",
                        "xsrc": "mkko:26:b97d0a",
                        "ysrc": "mkko:26:c5b165",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Nauru",
                        "offsetgroup": "Nauru",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Nauru<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Nepal",
                        "type": "bar",
                        "xsrc": "mkko:26:313137",
                        "ysrc": "mkko:26:9d13df",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Nepal",
                        "offsetgroup": "Nepal",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Nepal<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Netherlands",
                        "type": "bar",
                        "xsrc": "mkko:26:59be1e",
                        "ysrc": "mkko:26:67645c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Netherlands",
                        "offsetgroup": "Netherlands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Netherlands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "New Caledonia",
                        "type": "bar",
                        "xsrc": "mkko:26:493c57",
                        "ysrc": "mkko:26:ebfd27",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "New Caledonia",
                        "offsetgroup": "New Caledonia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=New Caledonia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "New Zealand",
                        "type": "bar",
                        "xsrc": "mkko:26:b08e1e",
                        "ysrc": "mkko:26:fc3f87",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "New Zealand",
                        "offsetgroup": "New Zealand",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=New Zealand<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Nicaragua",
                        "type": "bar",
                        "xsrc": "mkko:26:39f9b7",
                        "ysrc": "mkko:26:eed043",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Nicaragua",
                        "offsetgroup": "Nicaragua",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Nicaragua<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Niger",
                        "type": "bar",
                        "xsrc": "mkko:26:a75961",
                        "ysrc": "mkko:26:7a1e08",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Niger",
                        "offsetgroup": "Niger",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Niger<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Nigeria",
                        "type": "bar",
                        "xsrc": "mkko:26:785982",
                        "ysrc": "mkko:26:66c5bb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Nigeria",
                        "offsetgroup": "Nigeria",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Nigeria<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Niue",
                        "type": "bar",
                        "xsrc": "mkko:26:2527aa",
                        "ysrc": "mkko:26:090278",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Niue",
                        "offsetgroup": "Niue",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Niue<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "North Korea",
                        "type": "bar",
                        "xsrc": "mkko:26:b971fd",
                        "ysrc": "mkko:26:e20530",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "North Korea",
                        "offsetgroup": "North Korea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=North Korea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "North Macedonia",
                        "type": "bar",
                        "xsrc": "mkko:26:958cfb",
                        "ysrc": "mkko:26:fe4b3e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "North Macedonia",
                        "offsetgroup": "North Macedonia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=North Macedonia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Norway",
                        "type": "bar",
                        "xsrc": "mkko:26:c19b10",
                        "ysrc": "mkko:26:1c27ee",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Norway",
                        "offsetgroup": "Norway",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Norway<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Oman",
                        "type": "bar",
                        "xsrc": "mkko:26:9a6ab9",
                        "ysrc": "mkko:26:9b61a6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Oman",
                        "offsetgroup": "Oman",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Oman<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Pakistan",
                        "type": "bar",
                        "xsrc": "mkko:26:728d61",
                        "ysrc": "mkko:26:620b2c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Pakistan",
                        "offsetgroup": "Pakistan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Pakistan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Palau",
                        "type": "bar",
                        "xsrc": "mkko:26:4005db",
                        "ysrc": "mkko:26:9998c7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Palau",
                        "offsetgroup": "Palau",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Palau<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Palestine",
                        "type": "bar",
                        "xsrc": "mkko:26:c30cdf",
                        "ysrc": "mkko:26:45c82d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Palestine",
                        "offsetgroup": "Palestine",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Palestine<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Panama",
                        "type": "bar",
                        "xsrc": "mkko:26:290b91",
                        "ysrc": "mkko:26:8e0dcb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Panama",
                        "offsetgroup": "Panama",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Panama<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Papua New Guinea",
                        "type": "bar",
                        "xsrc": "mkko:26:99cece",
                        "ysrc": "mkko:26:6428a0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Papua New Guinea",
                        "offsetgroup": "Papua New Guinea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Papua New Guinea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Paraguay",
                        "type": "bar",
                        "xsrc": "mkko:26:ff8e3e",
                        "ysrc": "mkko:26:ad6d7c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Paraguay",
                        "offsetgroup": "Paraguay",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Paraguay<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Peru",
                        "type": "bar",
                        "xsrc": "mkko:26:fcbf8b",
                        "ysrc": "mkko:26:756335",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Peru",
                        "offsetgroup": "Peru",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Peru<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Philippines",
                        "type": "bar",
                        "xsrc": "mkko:26:fc288e",
                        "ysrc": "mkko:26:44334b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Philippines",
                        "offsetgroup": "Philippines",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Philippines<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Poland",
                        "type": "bar",
                        "xsrc": "mkko:26:a9b286",
                        "ysrc": "mkko:26:705571",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Poland",
                        "offsetgroup": "Poland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Poland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Portugal",
                        "type": "bar",
                        "xsrc": "mkko:26:197a01",
                        "ysrc": "mkko:26:0885f6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Portugal",
                        "offsetgroup": "Portugal",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Portugal<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Qatar",
                        "type": "bar",
                        "xsrc": "mkko:26:2ae3c9",
                        "ysrc": "mkko:26:9e6ef8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Qatar",
                        "offsetgroup": "Qatar",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Qatar<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Reunion",
                        "type": "bar",
                        "xsrc": "mkko:26:0de45d",
                        "ysrc": "mkko:26:8dfaff",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Reunion",
                        "offsetgroup": "Reunion",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Reunion<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Romania",
                        "type": "bar",
                        "xsrc": "mkko:26:63699f",
                        "ysrc": "mkko:26:6af9af",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Romania",
                        "offsetgroup": "Romania",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Romania<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Russia",
                        "type": "bar",
                        "xsrc": "mkko:26:a2a05a",
                        "ysrc": "mkko:26:9b8a84",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Russia",
                        "offsetgroup": "Russia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Russia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Rwanda",
                        "type": "bar",
                        "xsrc": "mkko:26:616049",
                        "ysrc": "mkko:26:c13db4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Rwanda",
                        "offsetgroup": "Rwanda",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Rwanda<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saint Helena",
                        "type": "bar",
                        "xsrc": "mkko:26:780578",
                        "ysrc": "mkko:26:4a7bb5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saint Helena",
                        "offsetgroup": "Saint Helena",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saint Helena<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saint Kitts and Nevis",
                        "type": "bar",
                        "xsrc": "mkko:26:ab9ac7",
                        "ysrc": "mkko:26:fab889",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saint Kitts and Nevis",
                        "offsetgroup": "Saint Kitts and Nevis",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saint Kitts and Nevis<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saint Lucia",
                        "type": "bar",
                        "xsrc": "mkko:26:5d8ad5",
                        "ysrc": "mkko:26:e68dfc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saint Lucia",
                        "offsetgroup": "Saint Lucia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saint Lucia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saint Pierre and Miquelon",
                        "type": "bar",
                        "xsrc": "mkko:26:3c6463",
                        "ysrc": "mkko:26:61f7ca",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saint Pierre and Miquelon",
                        "offsetgroup": "Saint Pierre and Miquelon",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saint Pierre and Miquelon<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saint Vincent and the Grenadines",
                        "type": "bar",
                        "xsrc": "mkko:26:c85e37",
                        "ysrc": "mkko:26:2167dd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saint Vincent and the Grenadines",
                        "offsetgroup": "Saint Vincent and the Grenadines",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saint Vincent and the Grenadines<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Samoa",
                        "type": "bar",
                        "xsrc": "mkko:26:e7ab75",
                        "ysrc": "mkko:26:a59a93",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Samoa",
                        "offsetgroup": "Samoa",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Samoa<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sao Tome and Principe",
                        "type": "bar",
                        "xsrc": "mkko:26:3012ce",
                        "ysrc": "mkko:26:bf6e65",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sao Tome and Principe",
                        "offsetgroup": "Sao Tome and Principe",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sao Tome and Principe<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Saudi Arabia",
                        "type": "bar",
                        "xsrc": "mkko:26:004d33",
                        "ysrc": "mkko:26:a26059",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Saudi Arabia",
                        "offsetgroup": "Saudi Arabia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Saudi Arabia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Senegal",
                        "type": "bar",
                        "xsrc": "mkko:26:cf0886",
                        "ysrc": "mkko:26:130acd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Senegal",
                        "offsetgroup": "Senegal",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Senegal<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Serbia",
                        "type": "bar",
                        "xsrc": "mkko:26:088e1b",
                        "ysrc": "mkko:26:4eca4d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Serbia",
                        "offsetgroup": "Serbia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Serbia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Seychelles",
                        "type": "bar",
                        "xsrc": "mkko:26:9d5b62",
                        "ysrc": "mkko:26:c0988f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Seychelles",
                        "offsetgroup": "Seychelles",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Seychelles<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sierra Leone",
                        "type": "bar",
                        "xsrc": "mkko:26:2d5bfb",
                        "ysrc": "mkko:26:a209e5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sierra Leone",
                        "offsetgroup": "Sierra Leone",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sierra Leone<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Singapore",
                        "type": "bar",
                        "xsrc": "mkko:26:34a818",
                        "ysrc": "mkko:26:c99e57",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Singapore",
                        "offsetgroup": "Singapore",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Singapore<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sint Maarten (Dutch part)",
                        "type": "bar",
                        "xsrc": "mkko:26:71122c",
                        "ysrc": "mkko:26:eb6565",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sint Maarten (Dutch part)",
                        "offsetgroup": "Sint Maarten (Dutch part)",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sint Maarten (Dutch part)<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Slovakia",
                        "type": "bar",
                        "xsrc": "mkko:26:1cfe14",
                        "ysrc": "mkko:26:b2fbfe",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Slovakia",
                        "offsetgroup": "Slovakia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Slovakia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Slovenia",
                        "type": "bar",
                        "xsrc": "mkko:26:22d9bb",
                        "ysrc": "mkko:26:ef1d66",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Slovenia",
                        "offsetgroup": "Slovenia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Slovenia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Solomon Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:b90337",
                        "ysrc": "mkko:26:3cc259",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Solomon Islands",
                        "offsetgroup": "Solomon Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Solomon Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Somalia",
                        "type": "bar",
                        "xsrc": "mkko:26:24c357",
                        "ysrc": "mkko:26:56655f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Somalia",
                        "offsetgroup": "Somalia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Somalia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "South Africa",
                        "type": "bar",
                        "xsrc": "mkko:26:f1da92",
                        "ysrc": "mkko:26:db3db9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "South Africa",
                        "offsetgroup": "South Africa",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=South Africa<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "South Korea",
                        "type": "bar",
                        "xsrc": "mkko:26:ee94b4",
                        "ysrc": "mkko:26:84b490",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "South Korea",
                        "offsetgroup": "South Korea",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=South Korea<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "South Sudan",
                        "type": "bar",
                        "xsrc": "mkko:26:f27c2f",
                        "ysrc": "mkko:26:eedf7b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "South Sudan",
                        "offsetgroup": "South Sudan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=South Sudan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Spain",
                        "type": "bar",
                        "xsrc": "mkko:26:362d6a",
                        "ysrc": "mkko:26:d747c0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Spain",
                        "offsetgroup": "Spain",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Spain<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sri Lanka",
                        "type": "bar",
                        "xsrc": "mkko:26:e87554",
                        "ysrc": "mkko:26:cc3748",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sri Lanka",
                        "offsetgroup": "Sri Lanka",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sri Lanka<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sudan",
                        "type": "bar",
                        "xsrc": "mkko:26:1bebd3",
                        "ysrc": "mkko:26:786a30",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sudan",
                        "offsetgroup": "Sudan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sudan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Suriname",
                        "type": "bar",
                        "xsrc": "mkko:26:986892",
                        "ysrc": "mkko:26:b192a8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Suriname",
                        "offsetgroup": "Suriname",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Suriname<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Sweden",
                        "type": "bar",
                        "xsrc": "mkko:26:088a11",
                        "ysrc": "mkko:26:10663a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Sweden",
                        "offsetgroup": "Sweden",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Sweden<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Switzerland",
                        "type": "bar",
                        "xsrc": "mkko:26:6fc507",
                        "ysrc": "mkko:26:0bc934",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Switzerland",
                        "offsetgroup": "Switzerland",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Switzerland<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Syria",
                        "type": "bar",
                        "xsrc": "mkko:26:43307d",
                        "ysrc": "mkko:26:31207b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Syria",
                        "offsetgroup": "Syria",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Syria<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Taiwan",
                        "type": "bar",
                        "xsrc": "mkko:26:059c31",
                        "ysrc": "mkko:26:5d8876",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Taiwan",
                        "offsetgroup": "Taiwan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Taiwan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Tajikistan",
                        "type": "bar",
                        "xsrc": "mkko:26:73bbde",
                        "ysrc": "mkko:26:465e88",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Tajikistan",
                        "offsetgroup": "Tajikistan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Tajikistan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Tanzania",
                        "type": "bar",
                        "xsrc": "mkko:26:2c9813",
                        "ysrc": "mkko:26:641ec5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Tanzania",
                        "offsetgroup": "Tanzania",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Tanzania<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Thailand",
                        "type": "bar",
                        "xsrc": "mkko:26:c301b2",
                        "ysrc": "mkko:26:03c9ac",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Thailand",
                        "offsetgroup": "Thailand",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Thailand<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Timor",
                        "type": "bar",
                        "xsrc": "mkko:26:d2334c",
                        "ysrc": "mkko:26:d78148",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Timor",
                        "offsetgroup": "Timor",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Timor<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Togo",
                        "type": "bar",
                        "xsrc": "mkko:26:c5d4ab",
                        "ysrc": "mkko:26:7e3f42",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Togo",
                        "offsetgroup": "Togo",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Togo<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Tonga",
                        "type": "bar",
                        "xsrc": "mkko:26:df2ca6",
                        "ysrc": "mkko:26:830ad8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Tonga",
                        "offsetgroup": "Tonga",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Tonga<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Trinidad and Tobago",
                        "type": "bar",
                        "xsrc": "mkko:26:e1ef85",
                        "ysrc": "mkko:26:2ef1eb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Trinidad and Tobago",
                        "offsetgroup": "Trinidad and Tobago",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Trinidad and Tobago<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Tunisia",
                        "type": "bar",
                        "xsrc": "mkko:26:30795d",
                        "ysrc": "mkko:26:9a8bb6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Tunisia",
                        "offsetgroup": "Tunisia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Tunisia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Turkey",
                        "type": "bar",
                        "xsrc": "mkko:26:0fc7d4",
                        "ysrc": "mkko:26:55f719",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Turkey",
                        "offsetgroup": "Turkey",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Turkey<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Turkmenistan",
                        "type": "bar",
                        "xsrc": "mkko:26:4c6a7b",
                        "ysrc": "mkko:26:77d197",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Turkmenistan",
                        "offsetgroup": "Turkmenistan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Turkmenistan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Turks and Caicos Islands",
                        "type": "bar",
                        "xsrc": "mkko:26:42cf5d",
                        "ysrc": "mkko:26:0267ef",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Turks and Caicos Islands",
                        "offsetgroup": "Turks and Caicos Islands",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Turks and Caicos Islands<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Tuvalu",
                        "type": "bar",
                        "xsrc": "mkko:26:70b78b",
                        "ysrc": "mkko:26:f13c45",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Tuvalu",
                        "offsetgroup": "Tuvalu",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Tuvalu<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Uganda",
                        "type": "bar",
                        "xsrc": "mkko:26:4335d6",
                        "ysrc": "mkko:26:b69b82",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Uganda",
                        "offsetgroup": "Uganda",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Uganda<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Ukraine",
                        "type": "bar",
                        "xsrc": "mkko:26:a5234b",
                        "ysrc": "mkko:26:12c875",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Ukraine",
                        "offsetgroup": "Ukraine",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Ukraine<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "United Arab Emirates",
                        "type": "bar",
                        "xsrc": "mkko:26:9dbb78",
                        "ysrc": "mkko:26:32fafb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "United Arab Emirates",
                        "offsetgroup": "United Arab Emirates",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=United Arab Emirates<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "United Kingdom",
                        "type": "bar",
                        "xsrc": "mkko:26:1fe125",
                        "ysrc": "mkko:26:dc22af",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "United Kingdom",
                        "offsetgroup": "United Kingdom",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=United Kingdom<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "United States",
                        "type": "bar",
                        "xsrc": "mkko:26:a69de5",
                        "ysrc": "mkko:26:192a1a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "United States",
                        "offsetgroup": "United States",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=United States<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Uruguay",
                        "type": "bar",
                        "xsrc": "mkko:26:afa3b0",
                        "ysrc": "mkko:26:5271d4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Uruguay",
                        "offsetgroup": "Uruguay",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Uruguay<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Uzbekistan",
                        "type": "bar",
                        "xsrc": "mkko:26:fa7bdb",
                        "ysrc": "mkko:26:b1cd02",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Uzbekistan",
                        "offsetgroup": "Uzbekistan",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Uzbekistan<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Vanuatu",
                        "type": "bar",
                        "xsrc": "mkko:26:4055f2",
                        "ysrc": "mkko:26:dd083a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Vanuatu",
                        "offsetgroup": "Vanuatu",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Vanuatu<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Venezuela",
                        "type": "bar",
                        "xsrc": "mkko:26:ccc4ae",
                        "ysrc": "mkko:26:a3d247",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Venezuela",
                        "offsetgroup": "Venezuela",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Venezuela<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Vietnam",
                        "type": "bar",
                        "xsrc": "mkko:26:e91317",
                        "ysrc": "mkko:26:f0aab3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Vietnam",
                        "offsetgroup": "Vietnam",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Vietnam<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Wallis and Futuna",
                        "type": "bar",
                        "xsrc": "mkko:26:6b56b8",
                        "ysrc": "mkko:26:499ab0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Wallis and Futuna",
                        "offsetgroup": "Wallis and Futuna",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Wallis and Futuna<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Yemen",
                        "type": "bar",
                        "xsrc": "mkko:26:7e5ebe",
                        "ysrc": "mkko:26:39fec4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Yemen",
                        "offsetgroup": "Yemen",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Yemen<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Zambia",
                        "type": "bar",
                        "xsrc": "mkko:26:60ef2c",
                        "ysrc": "mkko:26:213038",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Zambia",
                        "offsetgroup": "Zambia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Zambia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Zimbabwe",
                        "type": "bar",
                        "xsrc": "mkko:26:9c8b8f",
                        "ysrc": "mkko:26:8ca82c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Zimbabwe",
                        "offsetgroup": "Zimbabwe",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Zimbabwe<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Total Greenhouse Gas Pollution Per Country in 2019 <br><sup>Total greenhouse gas emissions including land-use change and forestry, measured in million tonnes of carbon dioxide-equivalents.</sup>"
                    },
                    "xaxis": {
                        "title": {
                            "text": "year"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Total Greenhouse Gas"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Country"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "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",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mkko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-20 01:55:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mkko",
                "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-03-26T20:34:11.086110Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mkko/25.embed",
            "fid": "mkko:25",
            "filename": "plotly graph web 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mkko:25/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mkko/25/2_W972EGZNRA88BCGPA1OWFN86U6PGDE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mkko/25/8_WA0P5EKU49W9COAP4QOEA6LB9KA60K.png",
                "list-thumb": "https://api.plotly.com/v2/files/mkko:25/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mkko:25",
                "plots": "https://api.plotly.com/v2/plots/mkko:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=mkko"
            },
            "owner": "mkko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 20,
            "web_url": "https://chart-studio.plotly.com/~mkko/25/",
            "world_readable": true,
            "date_modified": "2024-03-26T20:34:11.100Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mkko/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Canada",
                        "type": "bar",
                        "xsrc": "mkko:24:7e6510",
                        "ysrc": "mkko:24:ed0d86",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Canada",
                        "offsetgroup": "Canada",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Canada<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "China",
                        "type": "bar",
                        "xsrc": "mkko:24:209e45",
                        "ysrc": "mkko:24:c02387",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "China",
                        "offsetgroup": "China",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=China<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "India",
                        "type": "bar",
                        "xsrc": "mkko:24:a11a0d",
                        "ysrc": "mkko:24:e7bb90",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "India",
                        "offsetgroup": "India",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=India<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Indonesia",
                        "type": "bar",
                        "xsrc": "mkko:24:2310f2",
                        "ysrc": "mkko:24:b3e468",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Indonesia",
                        "offsetgroup": "Indonesia",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=Indonesia<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "South Africa",
                        "type": "bar",
                        "xsrc": "mkko:24:7f3109",
                        "ysrc": "mkko:24:13b797",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "South Africa",
                        "offsetgroup": "South Africa",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=South Africa<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "United States",
                        "type": "bar",
                        "xsrc": "mkko:24:1a1141",
                        "ysrc": "mkko:24:2d741b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "United States",
                        "offsetgroup": "United States",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Country=United States<br>year=%{x}<br>Total Greenhouse Gas=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Top Greenhouse Gas Polluters Per Year and Country <br><sup>Total greenhouse gas emissions including land-use change and forestry, measured in million tonnes of carbon dioxide-equivalents.</sup>'"
                    },
                    "xaxis": {
                        "title": {
                            "text": "year"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Total Greenhouse Gas"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Country"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "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",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "plot_bgcolor": "rgba(0,0,0,0)",
                    "paper_bgcolor": "rgba(0,0,0,0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mkko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-20 01:55:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mkko",
                "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-03-26T20:16:30.245858Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ameliap87/14.embed",
            "fid": "Ameliap87:14",
            "filename": "Plot 14",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Ameliap87/14/9_RKP9DQA45ADX0SCW2DJC1NHM0JAE0N.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Ameliap87/14/2_HDP020JLW171BFUJOCEQW2OYPB6MZX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ameliap87/14/8_HHLW6V3AXSFYLBCZFB93KFVIB2AYZO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Ameliap87/14/9_RKP9DQA45ADX0SCW2DJC1NHM0JAE0N.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ameliap87:14",
                "plots": "https://api.plotly.com/v2/plots/Ameliap87:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ameliap87"
            },
            "owner": "Ameliap87",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Ameliap87/14/",
            "world_readable": true,
            "date_modified": "2024-03-26T23:05:29.586Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ameliap87/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "ecDNA vs HSR"
                            }
                        },
                        "name": "ecDNA vs HSR",
                        "type": "bar",
                        "xsrc": "Ameliap87:15:bd47ea",
                        "ysrc": "Ameliap87:15:ed1b49",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "ecDNA vs P"
                            }
                        },
                        "name": "ecDNA vs P",
                        "type": "bar",
                        "xsrc": "Ameliap87:15:bd47ea",
                        "ysrc": "Ameliap87:15:558692",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "P vs PBRAF"
                            }
                        },
                        "name": "P vs PBRAF",
                        "type": "bar",
                        "xsrc": "Ameliap87:15:bd47ea",
                        "ysrc": "Ameliap87:15:e41cbd",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "title": {
                            "font": {
                                "size": 17
                            },
                            "text": "<br>"
                        },
                        "tickfont": {
                            "size": 30
                        },
                        "autorange": true,
                        "gridwidth": 0
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            5
                        ],
                        "tick0": 2,
                        "title": {
                            "font": {
                                "size": 27
                            },
                            "text": "LogFC"
                        },
                        "tickfont": {
                            "size": 22
                        },
                        "tickmode": "linear",
                        "autorange": false
                    },
                    "legend": {
                        "font": {
                            "size": 16,
                            "color": "rgb(23, 22, 22)"
                        }
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ameliap87",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2020-11-12 01:06:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ameliap87",
                "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-03-26T20:15:50.780649Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shayaan.aqil/1.embed",
            "fid": "shayaan.aqil:1",
            "filename": "Power vs Time(charging station)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/1/9_1RUG8STLNT4RKTUP9YVIL7SIN9VSQ8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/1/2_PKAHQ0F8ERGUEOVA34CGRGBE2VCFZ4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/1/8_X5BZD9AXJPQ5AJRUYA17736DU99T54.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shayaan.aqil/1/9_1RUG8STLNT4RKTUP9YVIL7SIN9VSQ8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shayaan.aqil:1",
                "plots": "https://api.plotly.com/v2/plots/shayaan.aqil:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=shayaan.aqil"
            },
            "owner": "shayaan.aqil",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~shayaan.aqil/1/",
            "world_readable": true,
            "date_modified": "2024-03-26T20:15:50.790Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shayaan.aqil/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B - C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "shayaan.aqil:0:be2878,e17be4*",
                        "ysrc": "shayaan.aqil:0:db0f7f",
                        "stackgroup": null,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Project reads by the length of the project's title"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "title": {
                            "text": "Time(Arrival/Departure)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            44.73684210526316
                        ],
                        "title": {
                            "text": "power(kWh)"
                        },
                        "autorange": true
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shayaan.aqil",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-26 20:14:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shayaan.aqil",
                "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-03-26T20:14:45.725568Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~caizhe0421/56.embed",
            "fid": "caizhe0421:56",
            "filename": "CMXRDND_BSSM",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/caizhe0421/56/9_DS7X1H4SH9L4R3PJFY3XEJ8TTUDMFU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/caizhe0421/56/2_J6A8QOXBACZDNR6HHUIUKS51C2HD9L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/caizhe0421/56/8_3638M15XN3HC1OHDK58JJGXB7NURN6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/caizhe0421/56/9_DS7X1H4SH9L4R3PJFY3XEJ8TTUDMFU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/caizhe0421:56",
                "plots": "https://api.plotly.com/v2/plots/caizhe0421:56",
                "parent": "https://api.plotly.com/v2/folders/home?user=caizhe0421"
            },
            "owner": "caizhe0421",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~caizhe0421/56/",
            "world_readable": true,
            "date_modified": "2024-09-02T11:58:41.961Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~caizhe0421/56/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "CM",
                        "type": "scatter",
                        "xsrc": "caizhe0421:55:de37b6",
                        "ysrc": "caizhe0421:55:695e99",
                        "marker": {
                            "size": 8,
                            "color": "rgb(68, 68, 68)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#636efa",
                            "value": 20,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "type": "constant",
                            "value": 20,
                            "width": 6,
                            "visible": true,
                            "symmetric": true,
                            "thickness": 3
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "H",
                                "y": "I",
                                "error_y": {
                                    "array": "J"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "LXRD",
                        "type": "scatter",
                        "xsrc": "caizhe0421:55:987093",
                        "ysrc": "caizhe0421:55:05df8d",
                        "marker": {
                            "size": 8,
                            "color": "rgb(153, 0, 204)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "J"
                                }
                            },
                            "type": "data",
                            "color": "rgb(153, 0, 204)",
                            "width": 6,
                            "visible": true,
                            "arraysrc": "caizhe0421:55:7f65db",
                            "traceref": 0,
                            "symmetric": true,
                            "thickness": 3,
                            "tracerefminus": 0
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "error_y": {
                                    "array": "O"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "SXRD",
                        "type": "scatter",
                        "xsrc": "caizhe0421:55:d32e24",
                        "ysrc": "caizhe0421:55:481c7b",
                        "marker": {
                            "size": 8,
                            "color": "rgb(153, 204, 255)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "O"
                                }
                            },
                            "type": "data",
                            "width": 6,
                            "visible": true,
                            "arraysrc": "caizhe0421:55:32f781",
                            "symmetric": true,
                            "thickness": 3
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "R",
                                "y": "S",
                                "error_y": {
                                    "array": "T"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "ND",
                        "type": "scatter",
                        "xsrc": "caizhe0421:55:1df900",
                        "ysrc": "caizhe0421:55:6c4e6a",
                        "marker": {
                            "size": 8,
                            "color": "rgb(255, 7, 7)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "T"
                                }
                            },
                            "type": "data",
                            "width": 6,
                            "visible": true,
                            "arraysrc": "caizhe0421:55:0405c4",
                            "symmetric": true,
                            "thickness": 3
                        },
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 22,
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "font": {
                            "size": 15
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.11994885268873703,
                            2.1459488526887367
                        ],
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Z (mm)"
                        },
                        "tickfont": {
                            "size": 22
                        },
                        "autorange": false,
                        "gridcolor": "rgb(101, 104, 107)",
                        "zerolinecolor": "rgb(101, 104, 107)",
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -705.8527777777778,
                            987.8027777777778
                        ],
                        "title": {
                            "text": "σ<sub>zz </sub>(Mpa)"
                        },
                        "autorange": true,
                        "gridcolor": "rgb(101, 104, 107)",
                        "zerolinecolor": "rgb(101, 104, 107)",
                        "zerolinewidth": 1
                    },
                    "legend": {
                        "x": 0.8181157388015758,
                        "y": 0.9152298850574713,
                        "font": {
                            "size": 22,
                            "color": "rgb(0, 0, 0)"
                        },
                        "traceorder": "normal",
                        "bordercolor": "rgb(0, 0, 0)"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 13
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~caizhe0421",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-07-26 11:28:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "caizhe0421",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}