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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA1KzA4JTNBMDYlM0E1My41MDMzNTMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wNSswOSUzQTIzJTNBNDguMjYzMDYyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-05T09:23:48.263062Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esanta/60.embed",
            "fid": "Esanta:60",
            "filename": "plot from API (30)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Esanta/60/9_Q45LVH4UZNC3BY5A4WVU4RMUMLXU4O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Esanta/60/2_NAQLV9AY45NNZG069VU5F0A9XBZAIX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/60/8_K4D3B41X11Q0QY6GJ7DAC9F9N77DXB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/60/9_Q45LVH4UZNC3BY5A4WVU4RMUMLXU4O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esanta:60",
                "plots": "https://api.plotly.com/v2/plots/Esanta:60",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esanta"
            },
            "owner": "Esanta",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Systolic vs Diastolic",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Esanta/60/systolic-vs-diastolic/",
            "world_readable": true,
            "date_modified": "2024-04-05T09:23:48.587Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esanta/60/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue"
                        },
                        "mode": "lines markers",
                        "name": "Systolic",
                        "type": "scatter",
                        "xsrc": "Esanta:61:bf491c",
                        "ysrc": "Esanta:61:512941",
                        "textsrc": "Esanta:61:169386"
                    },
                    {
                        "line": {
                            "color": "green"
                        },
                        "mode": "lines markers",
                        "name": "Diastolic",
                        "type": "scatter",
                        "xsrc": "Esanta:61:bf491c",
                        "ysrc": "Esanta:61:2a09e9",
                        "textsrc": "Esanta:61:169386"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esanta",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 19:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esanta",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T09:09:14.655743Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lviktor/79.embed",
            "fid": "lviktor:79",
            "filename": "Imports   4403 .html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lviktor/79/9_PCMQ4WJRH2VFTYE0COKW56TW1EMVHV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lviktor/79/2_XBCN54IV0SUEDMBB0MFOSS9VZSZDRV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/79/8_UF77WLGB3RUEMMPAVAD06QH7KJ544O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/79/9_PCMQ4WJRH2VFTYE0COKW56TW1EMVHV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lviktor:79",
                "plots": "https://api.plotly.com/v2/plots/lviktor:79",
                "parent": "https://api.plotly.com/v2/folders/home?user=lviktor"
            },
            "owner": "lviktor",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lviktor/79/",
            "world_readable": true,
            "date_modified": "2024-04-08T07:37:39.039Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lviktor/79/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "lviktor:106:608778",
                        "geojson": "https://raw.githubusercontent.com/python-visualization/folium/master/examples/data/world-countries.json",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgba(228, 26, 28, 0.5)"
                            ],
                            [
                                0.022727272727272728,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.045454545454545456,
                                "rgba(77, 175, 74, 0.5)"
                            ],
                            [
                                0.06818181818181818,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.09090909090909091,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.11363636363636363,
                                "rgba(255, 255, 51, 0.5)"
                            ],
                            [
                                0.13636363636363635,
                                "rgba(166, 86, 40, 0.5)"
                            ],
                            [
                                0.1590909090909091,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.18181818181818182,
                                "rgba(153, 153, 153, 0.5)"
                            ],
                            [
                                0.20454545454545456,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.22727272727272727,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.25,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.2727272727272727,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.29545454545454547,
                                "rgba(227, 26, 28, 0.5)"
                            ],
                            [
                                0.3181818181818182,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.3409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.36363636363636365,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.38636363636363635,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.4090909090909091,
                                "rgba(255, 255, 153, 0.5)"
                            ],
                            [
                                0.4318181818181818,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.45454545454545453,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.4772727272727273,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.5,
                                "rgba(166, 206, 227, 0.5)"
                            ],
                            [
                                0.5227272727272727,
                                "rgba(31, 120, 180, 0.5)"
                            ],
                            [
                                0.5454545454545454,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.5681818181818182,
                                "rgba(51, 160, 44, 0.5)"
                            ],
                            [
                                0.5909090909090909,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.6136363636363636,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.6363636363636364,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.6590909090909091,
                                "rgba(128, 26, 28, 0.5)"
                            ],
                            [
                                0.6818181818181818,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.7045454545454546,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.7272727272727273,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.75,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.7727272727272727,
                                "rgba(255, 255, 255, 0.5)"
                            ],
                            [
                                0.7954545454545454,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.8181818181818182,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.8409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.8636363636363636,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.8863636363636364,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.9090909090909091,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.9318181818181818,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.9545454545454546,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.9772727272727273,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                1.0,
                                "rgba(255, 255, 153, 0.5)"
                            ]
                        ],
                        "locationssrc": "lviktor:106:0728fc"
                    },
                    {
                        "mode": "markers",
                        "name": "CZE Tot.: 1152403 Tons",
                        "text": "CZE Tot.: 1152403 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:4d334f",
                        "lonsrc": "lviktor:106:0f60bd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 11.524030000000002,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ESP Tot.: 2552468 Tons",
                        "text": "ESP Tot.: 2552468 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:6e2936",
                        "lonsrc": "lviktor:106:773020",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 25.524680000000004,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ROU Tot.: 1018408 Tons",
                        "text": "ROU Tot.: 1018408 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:533d35",
                        "lonsrc": "lviktor:106:b3daca",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 10.184080000000002,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "HRV Tot.: 277028 Tons",
                        "text": "HRV Tot.: 277028 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b81506",
                        "lonsrc": "lviktor:106:0b0893",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.77028,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BIH Tot.: 235025 Tons",
                        "text": "BIH Tot.: 235025 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5dda6d",
                        "lonsrc": "lviktor:106:4fef0a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.3502500000000004,
                            "color": "rgb(255, 255, 51)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVK Tot.: 1933065 Tons",
                        "text": "SVK Tot.: 1933065 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b8069b",
                        "lonsrc": "lviktor:106:a2177a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 19.330650000000002,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LVA Tot.: 1518736 Tons",
                        "text": "LVA Tot.: 1518736 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ad1169",
                        "lonsrc": "lviktor:106:752277",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 15.187360000000002,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ITA Tot.: 2028100 Tons",
                        "text": "ITA Tot.: 2028100 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ab4bbb",
                        "lonsrc": "lviktor:106:108caf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 20.281000000000002,
                            "color": "rgb(177, 89, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NLD Tot.: 261154 Tons",
                        "text": "NLD Tot.: 261154 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:2d7851",
                        "lonsrc": "lviktor:106:05f145",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.61154,
                            "color": "rgb(128, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CHE Tot.: 143834 Tons",
                        "text": "CHE Tot.: 143834 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:c10828",
                        "lonsrc": "lviktor:106:b9ac80",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.4383400000000002,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVN Tot.: 524910 Tons",
                        "text": "SVN Tot.: 524910 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:840ca9",
                        "lonsrc": "lviktor:106:a62487",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.2491,
                            "color": "rgb(202, 178, 214)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LTU Tot.: 204203 Tons",
                        "text": "LTU Tot.: 204203 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:07f301",
                        "lonsrc": "lviktor:106:5eb1be",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.04203,
                            "color": "rgb(166, 206, 227)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DEU Tot.: 4292048 Tons",
                        "text": "DEU Tot.: 4292048 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:3bf312",
                        "lonsrc": "lviktor:106:43b989",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 42.920480000000005,
                            "color": "rgb(253, 191, 111)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FIN Tot.: 2701164 Tons",
                        "text": "FIN Tot.: 2701164 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:178ac8",
                        "lonsrc": "lviktor:106:8b49c1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 27.011640000000003,
                            "color": "rgb(251, 154, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "EST Tot.: 676683 Tons",
                        "text": "EST Tot.: 676683 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7d8cfa",
                        "lonsrc": "lviktor:106:9098b8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.766830000000001,
                            "color": "rgb(178, 223, 138)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NOR Tot.: 328072 Tons",
                        "text": "NOR Tot.: 328072 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:1c33e2",
                        "lonsrc": "lviktor:106:f4f9a7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.28072,
                            "color": "rgb(55, 126, 184)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SWE Tot.: 6397277 Tons",
                        "text": "SWE Tot.: 6397277 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:a5afca",
                        "lonsrc": "lviktor:106:ab1cd5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 63.972770000000004,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DNK Tot.: 557739 Tons",
                        "text": "DNK Tot.: 557739 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5c0191",
                        "lonsrc": "lviktor:106:7b4115",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.57739,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "AUT Tot.: 6975165 Tons",
                        "text": "AUT Tot.: 6975165 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:c98b1d",
                        "lonsrc": "lviktor:106:b7140a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 69.75165000000001,
                            "color": "rgb(77, 175, 74)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "PRT Tot.: 3180191 Tons",
                        "text": "PRT Tot.: 3180191 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e23f37",
                        "lonsrc": "lviktor:106:f86411",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 31.801910000000003,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BGR Tot.: 54050 Tons",
                        "text": "BGR Tot.: 54050 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:452f24",
                        "lonsrc": "lviktor:106:1e2ea1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.5405000000000001,
                            "color": "rgb(166, 86, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "GBR Tot.: 559773 Tons",
                        "text": "GBR Tot.: 559773 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:765e89",
                        "lonsrc": "lviktor:106:d230bf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.59773,
                            "color": "rgb(106, 61, 154)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "POL Tot.: 2400120 Tons",
                        "text": "POL Tot.: 2400120 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:05c585",
                        "lonsrc": "lviktor:106:36fc74",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 24.0012,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LUX Tot.: 829703 Tons",
                        "text": "LUX Tot.: 829703 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:bee1cc",
                        "lonsrc": "lviktor:106:941278",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 8.297030000000001,
                            "color": "rgb(31, 120, 180)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BEL Tot.: 4940997 Tons",
                        "text": "BEL Tot.: 4940997 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:864972",
                        "lonsrc": "lviktor:106:1470c2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 49.40997,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FRA Tot.: 773924 Tons",
                        "text": "FRA Tot.: 773924 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:16a858",
                        "lonsrc": "lviktor:106:b01507",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 7.739240000000001,
                            "color": "rgb(227, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "IRL Tot.: 12521 Tons",
                        "text": "IRL Tot.: 12521 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:395cd1",
                        "lonsrc": "lviktor:106:8ba177",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.12521000000000002,
                            "color": "rgb(255, 255, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 4.77751
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Germany: 477751 Tons",
                        "text": "CZE to Germany: 477751 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:bc0eae",
                        "lonsrc": "lviktor:106:002286",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -65.19513481819659,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:b7fb8a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 3.1385300000000003
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Poland: 313853 Tons",
                        "text": "CZE to Poland: 313853 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:999588",
                        "lonsrc": "lviktor:106:a9088c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 50.85800841183817,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:ea0ca8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 2.3517900000000003
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Slovakia: 235179 Tons",
                        "text": "CZE to Slovakia: 235179 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:0b0efd",
                        "lonsrc": "lviktor:106:9e23b6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 110.9906164366688,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8508c4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 4.238390000000001
                        },
                        "mode": "lines+markers",
                        "name": "ESP to France: 423839 Tons",
                        "text": "ESP to France: 423839 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:c4d4f7",
                        "lonsrc": "lviktor:106:27297a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 34.16765535979212,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:53c29e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 3.53209
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Portugal: 353209 Tons",
                        "text": "ESP to Portugal: 353209 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:30650c",
                        "lonsrc": "lviktor:106:0e0076",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -97.95156255711332,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:efd02a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.2662400000000003
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Germany: 226624 Tons",
                        "text": "ROU to Germany: 226624 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e009e3",
                        "lonsrc": "lviktor:106:70c21c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -56.43934380144887,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:42049d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.1116200000000003
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Austria: 211162 Tons",
                        "text": "ROU to Austria: 211162 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:54504d",
                        "lonsrc": "lviktor:106:68242b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -73.99249783592833,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:6f71ca"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.9363800000000001
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Slovakia: 93638 Tons",
                        "text": "ROU to Slovakia: 93638 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b9c2e2",
                        "lonsrc": "lviktor:106:ea899b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -51.46249605714743,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8b8d14"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.4303000000000003
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Czech Republic: 243030 Tons",
                        "text": "ROU to Czech Republic: 243030 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7ffb23",
                        "lonsrc": "lviktor:106:8c97cf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -55.65200158467272,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e3fdb9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 1.30011
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Sweden: 130011 Tons",
                        "text": "ROU to Sweden: 130011 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5a8cc9",
                        "lonsrc": "lviktor:106:8a378a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -16.191015515223313,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:3f92e8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.50051
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Poland: 50051 Tons",
                        "text": "ROU to Poland: 50051 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:a3a5f1",
                        "lonsrc": "lviktor:106:1678db",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -26.802589020702726,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:7ae008"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 2.1540600000000003
                        },
                        "mode": "lines+markers",
                        "name": "HRV to Slovenia: 215406 Tons",
                        "text": "HRV to Slovenia: 215406 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:24384c",
                        "lonsrc": "lviktor:106:cd88ce",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -7.674554018338625,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e344e9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 255, 51)",
                            "width": 1.4029800000000001
                        },
                        "mode": "lines+markers",
                        "name": "BIH to Czech Republic: 140298 Tons",
                        "text": "BIH to Czech Republic: 140298 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5d9b28",
                        "lonsrc": "lviktor:106:e94b55",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -13.538219617744716,
                            "color": "rgb(255, 255, 51)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:c0c318"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 6.9381900000000005
                        },
                        "mode": "lines+markers",
                        "name": "SVK to Czech Republic: 693819 Tons",
                        "text": "SVK to Czech Republic: 693819 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:569f38",
                        "lonsrc": "lviktor:106:a366e1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -65.80745963255295,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:2822ce"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 3.8772400000000005
                        },
                        "mode": "lines+markers",
                        "name": "SVK to Poland: 387724 Tons",
                        "text": "SVK to Poland: 387724 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:185a00",
                        "lonsrc": "lviktor:106:588701",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 3.1856907396364136,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:7bb862"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.30023
                        },
                        "mode": "lines+markers",
                        "name": "SVK to Germany: 230023 Tons",
                        "text": "SVK to Germany: 230023 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:dfff36",
                        "lonsrc": "lviktor:106:ad42bb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -63.75577204059854,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:564d79"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 1.11708
                        },
                        "mode": "lines+markers",
                        "name": "SVK to Hungary: 111708 Tons",
                        "text": "SVK to Hungary: 111708 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:8b3890",
                        "lonsrc": "lviktor:106:7fa563",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -174.95134873240255,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:1e17e4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 6.66492
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Lithuania: 666492 Tons",
                        "text": "LVA to Lithuania: 666492 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7a631e",
                        "lonsrc": "lviktor:106:4269a4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -150.6861847452231,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8229f0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 4.49622
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Norway: 449622 Tons",
                        "text": "LVA to Norway: 449622 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:373514",
                        "lonsrc": "lviktor:106:f18fb0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -50.385578719583236,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:acd733"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 2.51668
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Sweden: 251668 Tons",
                        "text": "LVA to Sweden: 251668 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:6a8e6d",
                        "lonsrc": "lviktor:106:f09b36",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -41.195554744371265,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:5c505b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 5.51325
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Slovenia: 551325 Tons",
                        "text": "ITA to Slovenia: 551325 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:2b5cf7",
                        "lonsrc": "lviktor:106:be677d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 24.179992789057252,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:6fe300"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 3.4803100000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to France: 348031 Tons",
                        "text": "ITA to France: 348031 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:435283",
                        "lonsrc": "lviktor:106:e33a3a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -64.00765553444117,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0012e2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 3.10753
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Croatia: 310753 Tons",
                        "text": "ITA to Croatia: 310753 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:553c75",
                        "lonsrc": "lviktor:106:985b5e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 36.10870878778337,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:88140f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.30804
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Switzerland: 230804 Tons",
                        "text": "ITA to Switzerland: 230804 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:65cd0c",
                        "lonsrc": "lviktor:106:30954e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -37.71539296262753,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:880a33"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.7814500000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Austria: 178145 Tons",
                        "text": "ITA to Austria: 178145 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ad1105",
                        "lonsrc": "lviktor:106:70e7ad",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 10.929331045355212,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:753928"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.6511600000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Hungary: 165116 Tons",
                        "text": "ITA to Hungary: 165116 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e67b0c",
                        "lonsrc": "lviktor:106:66d2b4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 45.130047217220806,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:1c5ef0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 0.5482400000000001
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Germany: 54824 Tons",
                        "text": "NLD to Germany: 54824 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:261b42",
                        "lonsrc": "lviktor:106:e4d06b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 112.80601501357557,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:51f0ba"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 1.08318
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Germany: 108318 Tons",
                        "text": "CHE to Germany: 108318 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:275343",
                        "lonsrc": "lviktor:106:990b18",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.159198444777843,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0ae324"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 2.1191400000000002
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Austria: 211914 Tons",
                        "text": "SVN to Austria: 211914 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:8f1788",
                        "lonsrc": "lviktor:106:3b9cd8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -20.599301015334277,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e4c70a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.32525
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Italy: 132525 Tons",
                        "text": "SVN to Italy: 132525 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:0e5a94",
                        "lonsrc": "lviktor:106:f0c0a7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -154.30398294757194,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:69de2e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.0218
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Croatia: 102180 Tons",
                        "text": "SVN to Croatia: 102180 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:88d9e7",
                        "lonsrc": "lviktor:106:5b9e22",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 172.17926617746946,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:523bf8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 1.2180700000000002
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Poland: 121807 Tons",
                        "text": "LTU to Poland: 121807 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:239e18",
                        "lonsrc": "lviktor:106:d4672b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -147.91911427835424,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:bcb815"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 0.77517
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Latvia: 77517 Tons",
                        "text": "LTU to Latvia: 77517 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7c1b56",
                        "lonsrc": "lviktor:106:57e37e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.479891232062215,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e4c33c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 11.33168
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Czech Republic: 1133168 Tons",
                        "text": "DEU to Czech Republic: 1133168 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:005f3b",
                        "lonsrc": "lviktor:106:4031a0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 110.9293488526323,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:3eaafd"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 10.509820000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Poland: 1050982 Tons",
                        "text": "DEU to Poland: 1050982 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:2131b3",
                        "lonsrc": "lviktor:106:205ea6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 78.27015656162581,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0ffe46"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 6.955750000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Norway: 695575 Tons",
                        "text": "DEU to Norway: 695575 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7d9a87",
                        "lonsrc": "lviktor:106:edde8a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -1.1274395789782545,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:82209c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 3.31305
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Belgium: 331305 Tons",
                        "text": "DEU to Belgium: 331305 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ed341d",
                        "lonsrc": "lviktor:106:ebc241",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -95.94298850401717,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:eed795"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 3.2047700000000003
                        },
                        "mode": "lines+markers",
                        "name": "DEU to France: 320477 Tons",
                        "text": "DEU to France: 320477 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:0a3aa0",
                        "lonsrc": "lviktor:106:a5e8a0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -129.49974571106284,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:84fe34"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.7791800000000002
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Sweden: 177918 Tons",
                        "text": "DEU to Sweden: 177918 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:c5be1b",
                        "lonsrc": "lviktor:106:a8d4a0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 11.136868815400362,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:704656"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.23482
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Luxembourg: 123482 Tons",
                        "text": "DEU to Luxembourg: 123482 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ffc986",
                        "lonsrc": "lviktor:106:9d4ec5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -114.47776826370222,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:1f52c5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.79693
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Latvia: 79693 Tons",
                        "text": "DEU to Latvia: 79693 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:aaa65d",
                        "lonsrc": "lviktor:106:2e0ecb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 49.88820538206545,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8ada75"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.67817
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Netherlands: 67817 Tons",
                        "text": "DEU to Netherlands: 67817 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:1ca57d",
                        "lonsrc": "lviktor:106:b0fcd0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -63.49656991321723,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:dd208b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.5570900000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Switzerland: 55709 Tons",
                        "text": "DEU to Switzerland: 55709 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:eba461",
                        "lonsrc": "lviktor:106:1c0e37",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -157.9869614765162,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:6e87dd"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.50429
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Austria: 50429 Tons",
                        "text": "DEU to Austria: 50429 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5c341c",
                        "lonsrc": "lviktor:106:dba0be",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 144.3186194799946,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:2a315b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 7.841100000000001
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Estonia: 784110 Tons",
                        "text": "FIN to Estonia: 784110 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ea3b48",
                        "lonsrc": "lviktor:106:79ad9b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -174.55570923746188,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:33f78b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 6.78493
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Latvia: 678493 Tons",
                        "text": "FIN to Latvia: 678493 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:364370",
                        "lonsrc": "lviktor:106:cb813f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -175.53749612802488,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0ac6b3"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 5.5330900000000005
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Sweden: 553309 Tons",
                        "text": "FIN to Sweden: 553309 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:bc26af",
                        "lonsrc": "lviktor:106:4c6656",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -106.85937318966296,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e0c79f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 0.5799700000000001
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Lithuania: 57997 Tons",
                        "text": "FIN to Lithuania: 57997 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ca35d4",
                        "lonsrc": "lviktor:106:ef683c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -172.00037365755205,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:831ddc"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 3.1833600000000004
                        },
                        "mode": "lines+markers",
                        "name": "EST to Latvia: 318336 Tons",
                        "text": "EST to Latvia: 318336 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:a2a080",
                        "lonsrc": "lviktor:106:251c67",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -179.73393905188595,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:b276a3"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.9082600000000001
                        },
                        "mode": "lines+markers",
                        "name": "EST to Poland: 90826 Tons",
                        "text": "EST to Poland: 90826 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:625818",
                        "lonsrc": "lviktor:106:d13ea3",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -154.50843314619613,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:b27743"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.7634500000000001
                        },
                        "mode": "lines+markers",
                        "name": "EST to Sweden: 76345 Tons",
                        "text": "EST to Sweden: 76345 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:4ef8af",
                        "lonsrc": "lviktor:106:1eadfa",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -51.260597076873665,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0fdf8a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.76075
                        },
                        "mode": "lines+markers",
                        "name": "EST to Finland: 76075 Tons",
                        "text": "EST to Finland: 76075 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:4e24bc",
                        "lonsrc": "lviktor:106:ea0461",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 4.578125097358651,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:20f87c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(55, 126, 184)",
                            "width": 3.1202500000000004
                        },
                        "mode": "lines+markers",
                        "name": "NOR to Sweden: 312025 Tons",
                        "text": "NOR to Sweden: 312025 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ef1911",
                        "lonsrc": "lviktor:106:d671f8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 87.79232230767292,
                            "color": "rgb(55, 126, 184)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:3867d4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 27.014820000000004
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Norway: 2701482 Tons",
                        "text": "SWE to Norway: 2701482 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b3b2b9",
                        "lonsrc": "lviktor:106:65f50c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -87.7923223076729,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8de06e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 14.960040000000001
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Latvia: 1496004 Tons",
                        "text": "SWE to Latvia: 1496004 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:bbf1d4",
                        "lonsrc": "lviktor:106:8520e2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 130.17433844809318,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:8edfbc"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 11.03517
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Finland: 1103517 Tons",
                        "text": "SWE to Finland: 1103517 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:d69f6d",
                        "lonsrc": "lviktor:106:02a008",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 63.331868009709325,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:644fde"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 7.61988
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Estonia: 761988 Tons",
                        "text": "SWE to Estonia: 761988 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:6bb7dc",
                        "lonsrc": "lviktor:106:da49bb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 120.03221627244608,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:42a9fb"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 1.15317
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Lithuania: 115317 Tons",
                        "text": "SWE to Lithuania: 115317 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e9dfc0",
                        "lonsrc": "lviktor:106:5de655",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 138.37746002223577,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:f0b476"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.9865700000000001
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Poland: 98657 Tons",
                        "text": "SWE to Poland: 98657 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b763f3",
                        "lonsrc": "lviktor:106:8e1a76",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 162.6338682756906,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:3a5a84"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 1.8182600000000002
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Sweden: 181826 Tons",
                        "text": "DNK to Sweden: 181826 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:4553ab",
                        "lonsrc": "lviktor:106:1a1d0e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 21.10539668854898,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:2f2ae3"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 1.00543
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Germany: 100543 Tons",
                        "text": "DNK to Germany: 100543 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e3dcf5",
                        "lonsrc": "lviktor:106:706d2c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 176.6437063879672,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:77d106"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.9510200000000001
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Norway: 95102 Tons",
                        "text": "DNK to Norway: 95102 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:a8df81",
                        "lonsrc": "lviktor:106:1fba69",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 0.0,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:48c25f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.70496
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Latvia: 70496 Tons",
                        "text": "DNK to Latvia: 70496 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:a661b8",
                        "lonsrc": "lviktor:106:9cc38e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 76.88662796249167,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:a20b35"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 31.489220000000003
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Czech Republic: 3148922 Tons",
                        "text": "AUT to Czech Republic: 3148922 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:318efa",
                        "lonsrc": "lviktor:106:280e70",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.231308838025228,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:a34d4b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 24.58116
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Germany: 2458116 Tons",
                        "text": "AUT to Germany: 2458116 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:97627a",
                        "lonsrc": "lviktor:106:c0f07c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -32.838568384491424,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:5342be"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 3.4736700000000003
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Hungary: 347367 Tons",
                        "text": "AUT to Hungary: 347367 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:ceffda",
                        "lonsrc": "lviktor:106:f4c688",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 94.7568244207448,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:c596f1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 3.3787900000000004
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Slovenia: 337879 Tons",
                        "text": "AUT to Slovenia: 337879 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:70c3d0",
                        "lonsrc": "lviktor:106:f44cd1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 158.81616270861014,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:795b23"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 2.5374700000000003
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Italy: 253747 Tons",
                        "text": "AUT to Italy: 253747 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:33e344",
                        "lonsrc": "lviktor:106:38f224",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -168.10371644467477,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:7ff5bc"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 1.68551
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Slovakia: 168551 Tons",
                        "text": "AUT to Slovakia: 168551 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:52bf42",
                        "lonsrc": "lviktor:106:b94519",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 71.53524422786776,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:bfc620"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 1.03403
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Switzerland: 103403 Tons",
                        "text": "AUT to Switzerland: 103403 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:9461eb",
                        "lonsrc": "lviktor:106:b0ca1c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -95.65267999411253,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:a39093"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 19.149710000000002
                        },
                        "mode": "lines+markers",
                        "name": "PRT to Spain: 1914971 Tons",
                        "text": "PRT to Spain: 1914971 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7f3e68",
                        "lonsrc": "lviktor:106:fbd022",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.49004289093159,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:76d4cf"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 4.742940000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Ireland: 474294 Tons",
                        "text": "GBR to Ireland: 474294 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:77751b",
                        "lonsrc": "lviktor:106:c5ac73",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -100.27927028869813,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e58076"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 7.9863800000000005
                        },
                        "mode": "lines+markers",
                        "name": "POL to Czech Republic: 798638 Tons",
                        "text": "POL to Czech Republic: 798638 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:90494f",
                        "lonsrc": "lviktor:106:fb1623",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -125.6270296160934,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:984f39"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 6.77761
                        },
                        "mode": "lines+markers",
                        "name": "POL to Germany: 677761 Tons",
                        "text": "POL to Germany: 677761 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:18dd40",
                        "lonsrc": "lviktor:106:6278a5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -94.24163714076593,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:0b5b3f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 3.1436200000000003
                        },
                        "mode": "lines+markers",
                        "name": "POL to Latvia: 314362 Tons",
                        "text": "POL to Latvia: 314362 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:06cae6",
                        "lonsrc": "lviktor:106:13b0de",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.129898271011115,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:3246d2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 2.7091600000000002
                        },
                        "mode": "lines+markers",
                        "name": "POL to Lithuania: 270916 Tons",
                        "text": "POL to Lithuania: 270916 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:66ac92",
                        "lonsrc": "lviktor:106:3d9ccc",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.842391889667454,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:2eae40"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.19198
                        },
                        "mode": "lines+markers",
                        "name": "POL to Slovakia: 119198 Tons",
                        "text": "POL to Slovakia: 119198 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:faa3e6",
                        "lonsrc": "lviktor:106:c5cc3b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -176.58250611971295,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:a38472"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.7492800000000001
                        },
                        "mode": "lines+markers",
                        "name": "POL to Sweden: 74928 Tons",
                        "text": "POL to Sweden: 74928 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:8ddad7",
                        "lonsrc": "lviktor:106:d7f36b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -13.155982970555158,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:712fc4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.66976
                        },
                        "mode": "lines+markers",
                        "name": "POL to Norway: 66976 Tons",
                        "text": "POL to Norway: 66976 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:d1f861",
                        "lonsrc": "lviktor:106:00dbb2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -24.453803999861833,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:2828cc"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(31, 120, 180)",
                            "width": 3.9018900000000003
                        },
                        "mode": "lines+markers",
                        "name": "LUX to Germany: 390189 Tons",
                        "text": "LUX to Germany: 390189 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:7e867a",
                        "lonsrc": "lviktor:106:d37b23",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 62.18693186847378,
                            "color": "rgb(31, 120, 180)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:b05dbf"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(31, 120, 180)",
                            "width": 3.0444400000000003
                        },
                        "mode": "lines+markers",
                        "name": "LUX to France: 304444 Tons",
                        "text": "LUX to France: 304444 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:5ac61e",
                        "lonsrc": "lviktor:106:8f81b1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -142.4871088879247,
                            "color": "rgb(31, 120, 180)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:ab4fe0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(31, 120, 180)",
                            "width": 1.1552
                        },
                        "mode": "lines+markers",
                        "name": "LUX to Belgium: 115520 Tons",
                        "text": "LUX to Belgium: 115520 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e0494b",
                        "lonsrc": "lviktor:106:fc7b15",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -48.0423754604052,
                            "color": "rgb(31, 120, 180)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:7366a1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 20.255640000000003
                        },
                        "mode": "lines+markers",
                        "name": "BEL to France: 2025564 Tons",
                        "text": "BEL to France: 2025564 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:3a914c",
                        "lonsrc": "lviktor:106:34fe98",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -158.0804610558197,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:f71b67"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 10.52302
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Netherlands: 1052302 Tons",
                        "text": "BEL to Netherlands: 1052302 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:973401",
                        "lonsrc": "lviktor:106:171cb8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.480508609393922,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:58a897"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 5.95905
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Germany: 595905 Tons",
                        "text": "BEL to Germany: 595905 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:8128ce",
                        "lonsrc": "lviktor:106:15abfb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.5659832094671,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:26bc0e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 5.05403
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Latvia: 505403 Tons",
                        "text": "BEL to Latvia: 505403 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:b03f16",
                        "lonsrc": "lviktor:106:57a317",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 54.09705263004702,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:290db9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.9306200000000002
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Spain: 193062 Tons",
                        "text": "BEL to Spain: 193062 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:210ad6",
                        "lonsrc": "lviktor:106:005289",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -147.01904040288238,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:ddaa06"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.7473100000000001
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Luxembourg: 174731 Tons",
                        "text": "BEL to Luxembourg: 174731 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:8c2630",
                        "lonsrc": "lviktor:106:209eb1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 130.83319421661122,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:5f55a1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.5227400000000002
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Denmark: 152274 Tons",
                        "text": "BEL to Denmark: 152274 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:01ae3d",
                        "lonsrc": "lviktor:106:75d5a0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.613142019422753,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:e25069"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.45158
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Ireland: 145158 Tons",
                        "text": "BEL to Ireland: 145158 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:3a0fe6",
                        "lonsrc": "lviktor:106:a18725",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -67.22578932978963,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:a644f2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 1.5788600000000002
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Spain: 157886 Tons",
                        "text": "FRA to Spain: 157886 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:3959ec",
                        "lonsrc": "lviktor:106:679392",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -141.73274007073414,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:f2695c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 2.0207200000000003
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Germany: 202072 Tons",
                        "text": "FRA to Germany: 202072 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:0ee4ae",
                        "lonsrc": "lviktor:106:6db8d1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 44.150895851293,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:5e19ab"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 1.81644
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Belgium: 181644 Tons",
                        "text": "FRA to Belgium: 181644 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:e341b1",
                        "lonsrc": "lviktor:106:a763cf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.92606228040455,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:119f4e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.70067
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Switzerland: 70067 Tons",
                        "text": "FRA to Switzerland: 70067 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:1e0283",
                        "lonsrc": "lviktor:106:bdb5cf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 74.2242891004629,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:bf14b3"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.60699
                        },
                        "mode": "lines+markers",
                        "name": "FRA to United Kingdom: 60699 Tons",
                        "text": "FRA to United Kingdom: 60699 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:106:3ec871",
                        "lonsrc": "lviktor:106:080f87",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -16.301348453697415,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:106:96054c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {
                            "lat": 48,
                            "lon": 10
                        },
                        "lataxis": {
                            "range": [
                                35,
                                60
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -5,
                                25
                            ]
                        },
                        "showland": true,
                        "landcolor": "rgb(243, 243, 243)",
                        "showocean": true,
                        "oceancolor": "rgb(215, 230, 250)",
                        "projection": {
                            "type": "equirectangular"
                        },
                        "countrycolor": "rgb(204, 204, 204)",
                        "showcountries": true
                    },
                    "title": {
                        "text": "Imports Volume of 4403: for European Countries"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lviktor",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 14:45:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lviktor",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T09:08:34.479380Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eey575/1.embed",
            "fid": "eey575:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/eey575/1/9_2BNAGJ5NFYW2H5U5I8W4LMV3T7JHGB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eey575/1/2_ALXH8WACATC83UKUMUS7F0WN7E826M.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eey575/1/8_O42YZNQMJWYT1BLM2EUYPJ9SOEZU4A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/eey575/1/9_2BNAGJ5NFYW2H5U5I8W4LMV3T7JHGB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eey575:1",
                "plots": "https://api.plotly.com/v2/plots/eey575:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=eey575"
            },
            "owner": "eey575",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~eey575/1/",
            "world_readable": true,
            "date_modified": "2024-04-05T11:27:31.969Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eey575/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.y",
                                "y": "data.0.x"
                            }
                        },
                        "type": "bar",
                        "xsrc": "eey575:0:267a73",
                        "ysrc": "eey575:0:a3247e",
                        "orientation": "h",
                        "textposition": "middle center"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "font": {
                            "family": "Arial"
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            0,
                            9.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Number of Species"
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 20
                        },
                        "zeroline": false,
                        "autorange": false,
                        "automargin": true,
                        "fixedrange": true,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                0,
                                715.7894736842105
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "category",
                        "range": [
                            -0.5,
                            10.5
                        ],
                        "title": {
                            "font": {
                                "size": 20,
                                "family": "Arial"
                            },
                            "text": "<br>"
                        },
                        "autorange": true
                    },
                    "margin": {
                        "b": 90,
                        "l": 0,
                        "r": 20,
                        "t": 30,
                        "pad": 0
                    },
                    "autosize": true,
                    "colorway": [
                        "#3366cc",
                        "#dc3912",
                        "#ff9900",
                        "#109618",
                        "#990099",
                        "#0099c6",
                        "#dd4477",
                        "#66aa00",
                        "#b82e2e",
                        "#316395"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    },
                    "clickmode": "none",
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ]
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~eey575",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/63.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 09:08:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eey575",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T09:03:01.539450Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ashu3346/1.embed",
            "fid": "ashu3346:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ashu3346/1/9_8N7YYO0IPWFB19UNXWOIDNTDUBQGUO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ashu3346/1/2_JUOTK1PVEMVMC5I50RG8WEHPVDY171.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ashu3346/1/8_21UY13F10OU4U48FVEHX2PC32LR12U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ashu3346/1/9_8N7YYO0IPWFB19UNXWOIDNTDUBQGUO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ashu3346:1",
                "plots": "https://api.plotly.com/v2/plots/ashu3346:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ashu3346"
            },
            "owner": "ashu3346",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ashu3346/1/",
            "world_readable": true,
            "date_modified": "2024-04-05T09:03:01.549Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ashu3346/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "LAI_21 Nov",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "xsrc": "ashu3346:0:631354",
                        "boxpoints": false,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "LAI_12 Dec"
                            }
                        },
                        "type": "box",
                        "xsrc": "ashu3346:0:af5ab1",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "LAI_07 jan "
                            }
                        },
                        "type": "box",
                        "xsrc": "ashu3346:0:9a8819",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "LAI_25 Jan"
                            }
                        },
                        "type": "box",
                        "xsrc": "ashu3346:0:b22919",
                        "boxpoints": false,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.37321501711111116,
                            7.091085325111111
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ashu3346",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 09:02:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ashu3346",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T09:00:54.168848Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Archana038/3.embed",
            "fid": "Archana038:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Archana038/3/9_UUA0VLLEPI0BOPW8C2CWU1SKN2R2H9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Archana038/3/2_MP6FADRT72QVT2JDA8SLP2CLS6A3HN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Archana038/3/8_4QEYZXZKBS7R4TBY9YJHU3988J3Y7O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Archana038/3/9_UUA0VLLEPI0BOPW8C2CWU1SKN2R2H9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Archana038:3",
                "plots": "https://api.plotly.com/v2/plots/Archana038:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Archana038"
            },
            "owner": "Archana038",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Archana038/3/",
            "world_readable": true,
            "date_modified": "2024-04-05T09:02:05.523Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Archana038/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "color": "rgb(247, 1, 13)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "V_MAX",
                                "y": "I_MAX"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Archana038:2:4e64c3",
                        "ysrc": "Archana038:2:2529a2",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(250, 99, 106)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "hoverinfo": "x+y+name",
                        "hoverlabel": {
                            "align": "auto",
                            "namelength": 15
                        },
                        "connectgaps": true,
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "family": "Arial"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            0.94
                        ],
                        "title": {
                            "text": "V_MAX"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(1, 10, 24)",
                        "linewidth": 3,
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -1.3600277777777783,
                            45.89052777777778
                        ],
                        "title": {
                            "text": "I_MAX"
                        },
                        "mirror": "ticks",
                        "showgrid": false,
                        "showline": true,
                        "autorange": true,
                        "gridcolor": "rgb(2, 15, 36)",
                        "linecolor": "rgb(1, 15, 38)",
                        "linewidth": 3
                    },
                    "margin": {
                        "b": 60,
                        "l": 58,
                        "r": 67,
                        "t": 71
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "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"
                    },
                    "clickmode": "event+select",
                    "hovermode": "x",
                    "uniformtext": {
                        "mode": "show",
                        "minsize": 2
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Archana038",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 07:29:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Archana038",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T09:00:08.293314Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jiyea/4.embed",
            "fid": "jiyea:4",
            "filename": "Plot 1 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jiyea/4/9_JYL2EPDCSSFETZW1VVIWGTB34GRZEF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jiyea/4/2_5OFHHUQHY2J8M8GQEC1W3DU1K69P37.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jiyea/4/8_9PUCY0WG4SW8LJ2Q5EEOE89NXENPIQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jiyea/4/9_JYL2EPDCSSFETZW1VVIWGTB34GRZEF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jiyea:4",
                "plots": "https://api.plotly.com/v2/plots/jiyea:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=jiyea"
            },
            "owner": "jiyea",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jiyea/4/",
            "world_readable": true,
            "date_modified": "2024-04-09T07:00:36.728Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jiyea/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "i": "",
                                "x": "Solution 3D Points, x",
                                "y": "Solution 3D Points, y",
                                "z": "Solution 3D Points, z",
                                "intensity": "Solution 3D Points, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Solution 3D Points",
                        "type": "mesh3d",
                        "xsrc": "jiyea:3:a2ac90",
                        "ysrc": "jiyea:3:16f447",
                        "zsrc": "jiyea:3:7b6b9f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(55,126,184)"
                        },
                        "sizeref": 1,
                        "colorscale": [
                            [
                                0,
                                "#ffffcc"
                            ],
                            [
                                0.125,
                                "#ffeda0"
                            ],
                            [
                                0.25,
                                "#fed976"
                            ],
                            [
                                0.375,
                                "#feb24c"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#fc4e2a"
                            ],
                            [
                                0.75,
                                "#e31a1c"
                            ],
                            [
                                0.875,
                                "#bd0026"
                            ],
                            [
                                1,
                                "#800026"
                            ]
                        ],
                        "intensitysrc": "jiyea:3:7b6b9f",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -50,
                                50
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                4250,
                                4400
                            ],
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0.19068101481655586,
                                "y": 0.06869987460379595,
                                "z": 0.9792451571582835
                            },
                            "eye": {
                                "x": -0.03043845912790804,
                                "y": -1.855683371513551,
                                "z": -0.08472730518900459
                            },
                            "center": {
                                "x": -0.017278801302001656,
                                "y": -0.028505744990070525,
                                "z": -0.21547716878951614
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "orbit",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "3d points data"
                    },
                    "width": 800,
                    "height": 550,
                    "autosize": false,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "aspectmode": "manual",
                    "aspectratio": {
                        "x": 1,
                        "y": 1,
                        "z": 0.7
                    }
                }
            },
            "height": 550,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jiyea",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 05:49:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jiyea",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T08:52:14.665927Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cinemangamagic/1.embed",
            "fid": "cinemangamagic:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cinemangamagic/1/9_VV444CPDNRH352NBA0GHADE6WN1CTH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cinemangamagic/1/2_K570ND176R31LEBF6W9XFX2CNS1G03.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cinemangamagic/1/8_KEBO1YIFK68N9KGRCTB6U33P5BKYXR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cinemangamagic/1/9_VV444CPDNRH352NBA0GHADE6WN1CTH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cinemangamagic:1",
                "plots": "https://api.plotly.com/v2/plots/cinemangamagic:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cinemangamagic"
            },
            "owner": "cinemangamagic",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cinemangamagic/1/",
            "world_readable": true,
            "date_modified": "2024-04-05T08:52:14.676Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cinemangamagic/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cinemangamagic:0:c483a7",
                        "ysrc": "cinemangamagic:0:f2950c"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1957,
                            1990
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            8.000000000000002,
                            308
                        ],
                        "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/~cinemangamagic",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 08:51:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cinemangamagic",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T08:46:44.303508Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lviktor/77.embed",
            "fid": "lviktor:77",
            "filename": "Imports   4401 .html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lviktor/77/9_1RKQAIKRJCXCITQY5W9460BPDSYEK9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lviktor/77/2_AYV5JAPQSJGZ0C53IMJOD9GFOV0YNO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/77/8_108Y1U1VGZ20DTDSTZD0VRCC83TE8T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/77/9_1RKQAIKRJCXCITQY5W9460BPDSYEK9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lviktor:77",
                "plots": "https://api.plotly.com/v2/plots/lviktor:77",
                "parent": "https://api.plotly.com/v2/folders/home?user=lviktor"
            },
            "owner": "lviktor",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lviktor/77/",
            "world_readable": true,
            "date_modified": "2024-04-08T07:27:20.266Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lviktor/77/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "lviktor:105:ab7072",
                        "geojson": "https://raw.githubusercontent.com/python-visualization/folium/master/examples/data/world-countries.json",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgba(228, 26, 28, 0.5)"
                            ],
                            [
                                0.022727272727272728,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.045454545454545456,
                                "rgba(77, 175, 74, 0.5)"
                            ],
                            [
                                0.06818181818181818,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.09090909090909091,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.11363636363636363,
                                "rgba(255, 255, 51, 0.5)"
                            ],
                            [
                                0.13636363636363635,
                                "rgba(166, 86, 40, 0.5)"
                            ],
                            [
                                0.1590909090909091,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.18181818181818182,
                                "rgba(153, 153, 153, 0.5)"
                            ],
                            [
                                0.20454545454545456,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.22727272727272727,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.25,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.2727272727272727,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.29545454545454547,
                                "rgba(227, 26, 28, 0.5)"
                            ],
                            [
                                0.3181818181818182,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.3409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.36363636363636365,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.38636363636363635,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.4090909090909091,
                                "rgba(255, 255, 153, 0.5)"
                            ],
                            [
                                0.4318181818181818,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.45454545454545453,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.4772727272727273,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.5,
                                "rgba(166, 206, 227, 0.5)"
                            ],
                            [
                                0.5227272727272727,
                                "rgba(31, 120, 180, 0.5)"
                            ],
                            [
                                0.5454545454545454,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.5681818181818182,
                                "rgba(51, 160, 44, 0.5)"
                            ],
                            [
                                0.5909090909090909,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.6136363636363636,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.6363636363636364,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.6590909090909091,
                                "rgba(128, 26, 28, 0.5)"
                            ],
                            [
                                0.6818181818181818,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.7045454545454546,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.7272727272727273,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.75,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.7727272727272727,
                                "rgba(255, 255, 255, 0.5)"
                            ],
                            [
                                0.7954545454545454,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.8181818181818182,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.8409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.8636363636363636,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.8863636363636364,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.9090909090909091,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.9318181818181818,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.9545454545454546,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.9772727272727273,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                1.0,
                                "rgba(255, 255, 153, 0.5)"
                            ]
                        ],
                        "locationssrc": "lviktor:105:4d6ff0"
                    },
                    {
                        "mode": "markers",
                        "name": "BEL Tot.: 2575781 Tons",
                        "text": "BEL Tot.: 2575781 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:dd285d",
                        "lonsrc": "lviktor:105:840375",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 25.757810000000003,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FRA Tot.: 2358670 Tons",
                        "text": "FRA Tot.: 2358670 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:6926bd",
                        "lonsrc": "lviktor:105:5ee5b2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 23.5867,
                            "color": "rgb(227, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SWE Tot.: 2379218 Tons",
                        "text": "SWE Tot.: 2379218 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:4f7b50",
                        "lonsrc": "lviktor:105:4d2474",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 23.792180000000002,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "EST Tot.: 83937 Tons",
                        "text": "EST Tot.: 83937 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:79db6e",
                        "lonsrc": "lviktor:105:a64897",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.8393700000000001,
                            "color": "rgb(178, 223, 138)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NOR Tot.: 589086 Tons",
                        "text": "NOR Tot.: 589086 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7c5a94",
                        "lonsrc": "lviktor:105:13b913",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.890860000000001,
                            "color": "rgb(55, 126, 184)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SRB Tot.: 107541 Tons",
                        "text": "SRB Tot.: 107541 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8dc0ba",
                        "lonsrc": "lviktor:105:d61c82",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.07541,
                            "color": "rgb(178, 223, 138)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DNK Tot.: 4360734 Tons",
                        "text": "DNK Tot.: 4360734 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c98125",
                        "lonsrc": "lviktor:105:cffc3d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 43.60734,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "AUT Tot.: 2520953 Tons",
                        "text": "AUT Tot.: 2520953 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:9834df",
                        "lonsrc": "lviktor:105:a00693",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 25.20953,
                            "color": "rgb(77, 175, 74)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "POL Tot.: 988618 Tons",
                        "text": "POL Tot.: 988618 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7db04a",
                        "lonsrc": "lviktor:105:58d8c6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 9.886180000000001,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "PRT Tot.: 1769511 Tons",
                        "text": "PRT Tot.: 1769511 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8e7e1a",
                        "lonsrc": "lviktor:105:7cb92f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 17.69511,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BGR Tot.: 170982 Tons",
                        "text": "BGR Tot.: 170982 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8f9beb",
                        "lonsrc": "lviktor:105:59b84b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.7098200000000001,
                            "color": "rgb(166, 86, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "GBR Tot.: 7865202 Tons",
                        "text": "GBR Tot.: 7865202 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:520598",
                        "lonsrc": "lviktor:105:e0d2cf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 78.65202000000001,
                            "color": "rgb(106, 61, 154)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LVA Tot.: 818827 Tons",
                        "text": "LVA Tot.: 818827 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:73966e",
                        "lonsrc": "lviktor:105:b67ee1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 8.188270000000001,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ITA Tot.: 6171090 Tons",
                        "text": "ITA Tot.: 6171090 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1c7c51",
                        "lonsrc": "lviktor:105:9e010c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 61.7109,
                            "color": "rgb(177, 89, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVK Tot.: 286429 Tons",
                        "text": "SVK Tot.: 286429 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:67df99",
                        "lonsrc": "lviktor:105:3c018b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.8642900000000004,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NLD Tot.: 2845658 Tons",
                        "text": "NLD Tot.: 2845658 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:6b02d6",
                        "lonsrc": "lviktor:105:c0be9f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 28.456580000000002,
                            "color": "rgb(128, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CHE Tot.: 601159 Tons",
                        "text": "CHE Tot.: 601159 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bec469",
                        "lonsrc": "lviktor:105:3e00b4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.011590000000001,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FIN Tot.: 1776632 Tons",
                        "text": "FIN Tot.: 1776632 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:a909b5",
                        "lonsrc": "lviktor:105:088c7b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 17.76632,
                            "color": "rgb(251, 154, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LTU Tot.: 664387 Tons",
                        "text": "LTU Tot.: 664387 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:3eace7",
                        "lonsrc": "lviktor:105:8285d9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.643870000000001,
                            "color": "rgb(166, 206, 227)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVN Tot.: 501410 Tons",
                        "text": "SVN Tot.: 501410 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1b4af3",
                        "lonsrc": "lviktor:105:31474d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.0141,
                            "color": "rgb(202, 178, 214)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DEU Tot.: 2745226 Tons",
                        "text": "DEU Tot.: 2745226 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:b3c9ed",
                        "lonsrc": "lviktor:105:ee6751",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 27.452260000000003,
                            "color": "rgb(253, 191, 111)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CZE Tot.: 509221 Tons",
                        "text": "CZE Tot.: 509221 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:16ce7c",
                        "lonsrc": "lviktor:105:98bd8f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.092210000000001,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ESP Tot.: 504131 Tons",
                        "text": "ESP Tot.: 504131 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:307ee6",
                        "lonsrc": "lviktor:105:4d1ff1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.04131,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "HRV Tot.: 230542 Tons",
                        "text": "HRV Tot.: 230542 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:08677d",
                        "lonsrc": "lviktor:105:08c4b5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.3054200000000002,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ROU Tot.: 462443 Tons",
                        "text": "ROU Tot.: 462443 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:04818e",
                        "lonsrc": "lviktor:105:c3e086",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 4.62443,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 5.57089
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Germany: 557089 Tons",
                        "text": "BEL to Germany: 557089 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f29afa",
                        "lonsrc": "lviktor:105:7df83a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.5659832094671,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:4922e4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 4.03692
                        },
                        "mode": "lines+markers",
                        "name": "BEL to France: 403692 Tons",
                        "text": "BEL to France: 403692 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bc3943",
                        "lonsrc": "lviktor:105:87e16c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -158.0804610558197,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:711cbb"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 3.2335100000000003
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Netherlands: 323351 Tons",
                        "text": "BEL to Netherlands: 323351 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:47c7ab",
                        "lonsrc": "lviktor:105:4db27d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.480508609393922,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:233c8a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.8693400000000002
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Luxembourg: 186934 Tons",
                        "text": "BEL to Luxembourg: 186934 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f64e14",
                        "lonsrc": "lviktor:105:22f8f8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 130.83319421661122,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:cb5e7b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.2053200000000002
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Latvia: 120532 Tons",
                        "text": "BEL to Latvia: 120532 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f1d85e",
                        "lonsrc": "lviktor:105:7af77b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 54.09705263004702,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:5050e1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.58567
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Estonia: 58567 Tons",
                        "text": "BEL to Estonia: 58567 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f27b85",
                        "lonsrc": "lviktor:105:6e3d1d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 47.93065764983368,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:20b21b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 4.959110000000001
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Spain: 495911 Tons",
                        "text": "FRA to Spain: 495911 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:be29b8",
                        "lonsrc": "lviktor:105:582a63",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -141.73274007073414,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:1ec565"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 4.39944
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Belgium: 439944 Tons",
                        "text": "FRA to Belgium: 439944 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:10ac54",
                        "lonsrc": "lviktor:105:5d470e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.92606228040455,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b14f9c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 2.809
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Luxembourg: 280900 Tons",
                        "text": "FRA to Luxembourg: 280900 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7c7b4a",
                        "lonsrc": "lviktor:105:d7903b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 34.446163073234686,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:62e695"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 2.7163700000000004
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Germany: 271637 Tons",
                        "text": "FRA to Germany: 271637 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:45fcfb",
                        "lonsrc": "lviktor:105:742cc6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 44.150895851293,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:0acd19"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 1.13704
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Portugal: 113704 Tons",
                        "text": "FRA to Portugal: 113704 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:9853ca",
                        "lonsrc": "lviktor:105:a527c4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -128.02261607969277,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b2bb2d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 8.59923
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Norway: 859923 Tons",
                        "text": "SWE to Norway: 859923 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:5541dc",
                        "lonsrc": "lviktor:105:7ef2bd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -87.7923223076729,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:c440c4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 5.993830000000001
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Latvia: 599383 Tons",
                        "text": "SWE to Latvia: 599383 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:61ca08",
                        "lonsrc": "lviktor:105:9c1c9c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 130.17433844809318,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:0b4dbb"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.62683
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Estonia: 262683 Tons",
                        "text": "SWE to Estonia: 262683 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:128570",
                        "lonsrc": "lviktor:105:dedc98",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 120.03221627244608,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:442754"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.96628
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Finland: 96628 Tons",
                        "text": "SWE to Finland: 96628 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:07fcf4",
                        "lonsrc": "lviktor:105:f4d64f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 63.331868009709325,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d387a2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 1.46978
                        },
                        "mode": "lines+markers",
                        "name": "SWE to United Kingdom: 146978 Tons",
                        "text": "SWE to United Kingdom: 146978 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:b6c19c",
                        "lonsrc": "lviktor:105:8ad0ff",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -124.13281257271218,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:36ae60"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.9445700000000001
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Germany: 94457 Tons",
                        "text": "SWE to Germany: 94457 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:cce7af",
                        "lonsrc": "lviktor:105:e4582c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -165.04894798231575,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:c374ed"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.57006
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Spain: 57006 Tons",
                        "text": "SWE to Spain: 57006 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:726165",
                        "lonsrc": "lviktor:105:c61dab",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -143.55781823612037,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:92c935"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.8876200000000001
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Netherlands: 88762 Tons",
                        "text": "SWE to Netherlands: 88762 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:48b546",
                        "lonsrc": "lviktor:105:b4f610",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -148.2383221433501,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:83439a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(55, 126, 184)",
                            "width": 3.5036400000000003
                        },
                        "mode": "lines+markers",
                        "name": "NOR to Sweden: 350364 Tons",
                        "text": "NOR to Sweden: 350364 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:068118",
                        "lonsrc": "lviktor:105:4a9d94",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 87.79232230767292,
                            "color": "rgb(55, 126, 184)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:6c6d03"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(55, 126, 184)",
                            "width": 0.6988500000000001
                        },
                        "mode": "lines+markers",
                        "name": "NOR to Latvia: 69885 Tons",
                        "text": "NOR to Latvia: 69885 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:6bb7e7",
                        "lonsrc": "lviktor:105:a73210",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 116.65875717039683,
                            "color": "rgb(55, 126, 184)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a50309"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.5022300000000001
                        },
                        "mode": "lines+markers",
                        "name": "SRB to Bosnia and Herzegovina: 50223 Tons",
                        "text": "SRB to Bosnia and Herzegovina: 50223 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:722f8c",
                        "lonsrc": "lviktor:105:8dd753",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -90.86154719745008,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:9ca003"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 8.19414
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Estonia: 819414 Tons",
                        "text": "DNK to Estonia: 819414 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:895a46",
                        "lonsrc": "lviktor:105:0f6e71",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 66.0253879824939,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a8dc75"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 7.871530000000001
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Latvia: 787153 Tons",
                        "text": "DNK to Latvia: 787153 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:79f193",
                        "lonsrc": "lviktor:105:174c05",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 76.88662796249167,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:1e7625"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 4.68632
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Sweden: 468632 Tons",
                        "text": "DNK to Sweden: 468632 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:110a3b",
                        "lonsrc": "lviktor:105:9a647a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 21.10539668854898,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:f9ef0c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 3.3992000000000004
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Germany: 339920 Tons",
                        "text": "DNK to Germany: 339920 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:43c266",
                        "lonsrc": "lviktor:105:3d6727",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 176.6437063879672,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d9e524"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 3.28133
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Norway: 328133 Tons",
                        "text": "DNK to Norway: 328133 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:e0c4a8",
                        "lonsrc": "lviktor:105:e61c55",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 0.0,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:2b6640"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 1.93636
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Lithuania: 193636 Tons",
                        "text": "DNK to Lithuania: 193636 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c98a8c",
                        "lonsrc": "lviktor:105:92a81d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 84.18771002015842,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:5cced2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.8988400000000001
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Portugal: 89884 Tons",
                        "text": "DNK to Portugal: 89884 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:be08da",
                        "lonsrc": "lviktor:105:09852e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -136.66314323394042,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:2b3b7b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.8160200000000001
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Poland: 81602 Tons",
                        "text": "DNK to Poland: 81602 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:482bcd",
                        "lonsrc": "lviktor:105:f4bc70",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 120.11185876290239,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:618df4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 10.907570000000002
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Germany: 1090757 Tons",
                        "text": "AUT to Germany: 1090757 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:9c09c3",
                        "lonsrc": "lviktor:105:5f7cc7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -32.838568384491424,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a85e05"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 3.6632000000000002
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Slovenia: 366320 Tons",
                        "text": "AUT to Slovenia: 366320 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:78f845",
                        "lonsrc": "lviktor:105:e9adf4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 158.81616270861014,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:c7e20a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 3.25666
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Czech Republic: 325666 Tons",
                        "text": "AUT to Czech Republic: 325666 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f77625",
                        "lonsrc": "lviktor:105:93f05c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.231308838025228,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:0f942f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 2.38138
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Slovakia: 238138 Tons",
                        "text": "AUT to Slovakia: 238138 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f08c73",
                        "lonsrc": "lviktor:105:023ca2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 71.53524422786776,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:89494c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 1.54455
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Romania: 154455 Tons",
                        "text": "AUT to Romania: 154455 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:4b2eed",
                        "lonsrc": "lviktor:105:a7e85c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 98.11991898352107,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b6f9af"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 1.2427400000000002
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Hungary: 124274 Tons",
                        "text": "AUT to Hungary: 124274 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:084c23",
                        "lonsrc": "lviktor:105:506d3b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 94.7568244207448,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:3459df"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 3.92743
                        },
                        "mode": "lines+markers",
                        "name": "POL to Belarus: 392743 Tons",
                        "text": "POL to Belarus: 392743 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:16406a",
                        "lonsrc": "lviktor:105:70ef0a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 69.71666108654608,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:7e18f4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.8345300000000002
                        },
                        "mode": "lines+markers",
                        "name": "POL to Ukraine: 183453 Tons",
                        "text": "POL to Ukraine: 183453 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:54e0e6",
                        "lonsrc": "lviktor:105:896ada",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 106.74469357464972,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:3b74c7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.42467
                        },
                        "mode": "lines+markers",
                        "name": "POL to Lithuania: 142467 Tons",
                        "text": "POL to Lithuania: 142467 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:b1f0d3",
                        "lonsrc": "lviktor:105:39c4e2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.842391889667454,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:303dd2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.8464200000000001
                        },
                        "mode": "lines+markers",
                        "name": "POL to Germany: 84642 Tons",
                        "text": "POL to Germany: 84642 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c87754",
                        "lonsrc": "lviktor:105:06e5f5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -94.24163714076593,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:3545ca"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.72475
                        },
                        "mode": "lines+markers",
                        "name": "POL to Czech Republic: 72475 Tons",
                        "text": "POL to Czech Republic: 72475 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:153034",
                        "lonsrc": "lviktor:105:ed8bd3",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -125.6270296160934,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b3c960"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 3.42382
                        },
                        "mode": "lines+markers",
                        "name": "PRT to Spain: 342382 Tons",
                        "text": "PRT to Spain: 342382 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:45e440",
                        "lonsrc": "lviktor:105:3e5064",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.49004289093159,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:66d44e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 10.289380000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Latvia: 1028938 Tons",
                        "text": "GBR to Latvia: 1028938 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8f4cff",
                        "lonsrc": "lviktor:105:f7c917",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 67.9082267633226,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:2ea844"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 1.94155
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Portugal: 194155 Tons",
                        "text": "GBR to Portugal: 194155 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:fccd5e",
                        "lonsrc": "lviktor:105:fe70b5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -161.9130644011465,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d98f3d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 1.6526100000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Estonia: 165261 Tons",
                        "text": "GBR to Estonia: 165261 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:feef78",
                        "lonsrc": "lviktor:105:ae2edb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 61.94952174192892,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:9e0eb8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.9506800000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Ireland: 95068 Tons",
                        "text": "GBR to Ireland: 95068 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:a0e568",
                        "lonsrc": "lviktor:105:aa2c58",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -100.27927028869813,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:e9cd61"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.5334300000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Lithuania: 53343 Tons",
                        "text": "GBR to Lithuania: 53343 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:a1c219",
                        "lonsrc": "lviktor:105:e8ff2f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 71.78128133656855,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:48c243"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.51012
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Netherlands: 51012 Tons",
                        "text": "GBR to Netherlands: 51012 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:ca3f98",
                        "lonsrc": "lviktor:105:b5479c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 104.79266938066263,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:4bdb9d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 2.7532900000000002
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Lithuania: 275329 Tons",
                        "text": "LVA to Lithuania: 275329 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1d7555",
                        "lonsrc": "lviktor:105:3f8a65",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -150.6861847452231,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:0e7a7f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 1.5813400000000002
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Belarus: 158134 Tons",
                        "text": "LVA to Belarus: 158134 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:e28dac",
                        "lonsrc": "lviktor:105:3a1475",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 156.78461623907572,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:e50e9a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.8762300000000001
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Norway: 87623 Tons",
                        "text": "LVA to Norway: 87623 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bb8f5b",
                        "lonsrc": "lviktor:105:aad004",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -50.385578719583236,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:bb7524"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.74763
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Estonia: 74763 Tons",
                        "text": "LVA to Estonia: 74763 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:95adc3",
                        "lonsrc": "lviktor:105:f7dcf1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 0.2545519030168464,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:21ee6c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.63587
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Denmark: 63587 Tons",
                        "text": "LVA to Denmark: 63587 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:98d03f",
                        "lonsrc": "lviktor:105:a0274c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -90.58285427279594,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:2d685b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 25.675110000000004
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Croatia: 2567511 Tons",
                        "text": "ITA to Croatia: 2567511 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8a460d",
                        "lonsrc": "lviktor:105:c1dac8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 36.10870878778337,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:efb9ae"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 9.963410000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Austria: 996341 Tons",
                        "text": "ITA to Austria: 996341 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8bdee9",
                        "lonsrc": "lviktor:105:7a8438",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 10.929331045355212,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:4d261c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 5.31155
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Slovenia: 531155 Tons",
                        "text": "ITA to Slovenia: 531155 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f54985",
                        "lonsrc": "lviktor:105:cb83ba",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 24.179992789057252,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:8a46e4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.96049
                        },
                        "mode": "lines+markers",
                        "name": "ITA to France: 296049 Tons",
                        "text": "ITA to France: 296049 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:47f05b",
                        "lonsrc": "lviktor:105:9a6b30",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -64.00765553444117,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a51e83"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.4669000000000003
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Germany: 246690 Tons",
                        "text": "ITA to Germany: 246690 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c0ffab",
                        "lonsrc": "lviktor:105:a6a62a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -10.169144238747293,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d779db"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.7863000000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Poland: 178630 Tons",
                        "text": "ITA to Poland: 178630 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1fe47f",
                        "lonsrc": "lviktor:105:b044ee",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 25.28783494728205,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:ec3a18"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.7153800000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Bosnia and Herzegovina: 171538 Tons",
                        "text": "ITA to Bosnia and Herzegovina: 171538 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:627b6f",
                        "lonsrc": "lviktor:105:99a875",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 71.26019668403183,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:fec1ec"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.5894700000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Lithuania: 158947 Tons",
                        "text": "ITA to Lithuania: 158947 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:d26589",
                        "lonsrc": "lviktor:105:f034cb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 24.74340409420188,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a9e4af"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.30481
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Czech Republic: 130481 Tons",
                        "text": "ITA to Czech Republic: 130481 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:74b93e",
                        "lonsrc": "lviktor:105:dd95f2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 13.682551331386946,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:fb07b8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.2201300000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Slovakia: 122013 Tons",
                        "text": "ITA to Slovakia: 122013 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bae7fb",
                        "lonsrc": "lviktor:105:fee27a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 36.965893923888075,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:0fb8e5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.8632000000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Latvia: 86320 Tons",
                        "text": "ITA to Latvia: 86320 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:5c3e1a",
                        "lonsrc": "lviktor:105:bc8730",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 24.39864157899794,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:171fa2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.74036
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Spain: 74036 Tons",
                        "text": "ITA to Spain: 74036 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:3d03ee",
                        "lonsrc": "lviktor:105:ceb311",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -96.96847320536956,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:8d0d58"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.54093
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Estonia: 54093 Tons",
                        "text": "ITA to Estonia: 54093 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:13f4fc",
                        "lonsrc": "lviktor:105:cadbd2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 21.46413073510189,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d7a8e7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.8558500000000001
                        },
                        "mode": "lines+markers",
                        "name": "SVK to Poland: 85585 Tons",
                        "text": "SVK to Poland: 85585 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:0c07ed",
                        "lonsrc": "lviktor:105:7dc130",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 3.1856907396364136,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:32b00e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 2.0921000000000003
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Latvia: 209210 Tons",
                        "text": "NLD to Latvia: 209210 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:70762e",
                        "lonsrc": "lviktor:105:bcea79",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 60.25255578090102,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:ad661c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 1.35085
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Belgium: 135085 Tons",
                        "text": "NLD to Belgium: 135085 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:d14734",
                        "lonsrc": "lviktor:105:878a81",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -159.67074541498147,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:896789"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 1.1804700000000001
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Germany: 118047 Tons",
                        "text": "NLD to Germany: 118047 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:6c891a",
                        "lonsrc": "lviktor:105:2b9980",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 112.80601501357557,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:264e5f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 1.1525100000000001
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Estonia: 115251 Tons",
                        "text": "NLD to Estonia: 115251 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:061053",
                        "lonsrc": "lviktor:105:b26490",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 53.046027033628235,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d211db"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 2.95353
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Germany: 295353 Tons",
                        "text": "CHE to Germany: 295353 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:4854cd",
                        "lonsrc": "lviktor:105:146e3f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.159198444777843,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:04612f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 2.2084
                        },
                        "mode": "lines+markers",
                        "name": "CHE to France: 220840 Tons",
                        "text": "CHE to France: 220840 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f2ac3d",
                        "lonsrc": "lviktor:105:94a35a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -101.42141402259792,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:6fe852"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.50077
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Austria: 50077 Tons",
                        "text": "CHE to Austria: 50077 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c5024a",
                        "lonsrc": "lviktor:105:00efd3",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.79323899618566,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:4aa7e8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 2.8288900000000003
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Estonia: 282889 Tons",
                        "text": "FIN to Estonia: 282889 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bb0e34",
                        "lonsrc": "lviktor:105:1a03d5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -174.55570923746188,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:f0b047"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 2.75631
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Latvia: 275631 Tons",
                        "text": "FIN to Latvia: 275631 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:8b7695",
                        "lonsrc": "lviktor:105:566703",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -175.53749612802488,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:c45829"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 2.50084
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Sweden: 250084 Tons",
                        "text": "FIN to Sweden: 250084 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c87b41",
                        "lonsrc": "lviktor:105:bff863",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -106.85937318966296,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:d0962a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 0.5537700000000001
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Denmark: 55377 Tons",
                        "text": "FIN to Denmark: 55377 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:79053d",
                        "lonsrc": "lviktor:105:e511de",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -127.83347956998998,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:fd950e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 0.51681
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Belgium: 51681 Tons",
                        "text": "FIN to Belgium: 51681 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:207500",
                        "lonsrc": "lviktor:105:df2e65",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -129.76840258908715,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:a73ad1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 3.07878
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Latvia: 307878 Tons",
                        "text": "LTU to Latvia: 307878 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:0c322f",
                        "lonsrc": "lviktor:105:8038cf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.479891232062215,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:851a1b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 2.29773
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Belarus: 229773 Tons",
                        "text": "LTU to Belarus: 229773 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1fe677",
                        "lonsrc": "lviktor:105:8ebdaa",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 139.9874634368265,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b8d8ea"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.8077400000000001
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Croatia: 180774 Tons",
                        "text": "SVN to Croatia: 180774 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:04af23",
                        "lonsrc": "lviktor:105:d0ffc9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 172.17926617746946,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:901e33"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.1300100000000002
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Austria: 113001 Tons",
                        "text": "SVN to Austria: 113001 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7a8dd4",
                        "lonsrc": "lviktor:105:b3b883",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -20.599301015334277,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:ab69a5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.0375500000000002
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Bosnia and Herzegovina: 103755 Tons",
                        "text": "SVN to Bosnia and Herzegovina: 103755 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:20b67f",
                        "lonsrc": "lviktor:105:df79a9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 138.7313758038669,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:09ec9b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 5.93763
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Poland: 593763 Tons",
                        "text": "DEU to Poland: 593763 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:d11456",
                        "lonsrc": "lviktor:105:273cac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 78.27015656162581,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:83db0b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 5.1142900000000004
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Netherlands: 511429 Tons",
                        "text": "DEU to Netherlands: 511429 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:99fc6f",
                        "lonsrc": "lviktor:105:e4488d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -63.49656991321723,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:ff9c4b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 2.85041
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Czech Republic: 285041 Tons",
                        "text": "DEU to Czech Republic: 285041 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c5fda4",
                        "lonsrc": "lviktor:105:04cc4d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 110.9293488526323,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:f3eb42"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.9746400000000002
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Denmark: 197464 Tons",
                        "text": "DEU to Denmark: 197464 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:48d334",
                        "lonsrc": "lviktor:105:22d26e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -2.992640055408799,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:35283c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.8152700000000002
                        },
                        "mode": "lines+markers",
                        "name": "DEU to France: 181527 Tons",
                        "text": "DEU to France: 181527 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:0855ba",
                        "lonsrc": "lviktor:105:74cfcd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -129.49974571106284,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:1def0a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.6835900000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Ukraine: 168359 Tons",
                        "text": "DEU to Ukraine: 168359 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:165c36",
                        "lonsrc": "lviktor:105:fbd8ac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 90.49244797588256,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:44c482"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.45916
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Belgium: 145916 Tons",
                        "text": "DEU to Belgium: 145916 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:1eca7d",
                        "lonsrc": "lviktor:105:2510eb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -95.94298850401717,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b82a85"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.0222300000000002
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Austria: 102223 Tons",
                        "text": "DEU to Austria: 102223 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:bd0701",
                        "lonsrc": "lviktor:105:5fd8d8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 144.3186194799946,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:e43c89"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.9701900000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Switzerland: 97019 Tons",
                        "text": "DEU to Switzerland: 97019 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:c26671",
                        "lonsrc": "lviktor:105:e6dc88",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -157.9869614765162,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:8c93e7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.70682
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Sweden: 70682 Tons",
                        "text": "DEU to Sweden: 70682 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:a431d8",
                        "lonsrc": "lviktor:105:73a279",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 11.136868815400362,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:817753"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.6125900000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Latvia: 61259 Tons",
                        "text": "DEU to Latvia: 61259 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:95a3a1",
                        "lonsrc": "lviktor:105:6b1756",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 49.88820538206545,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:3ef02b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.5254000000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Lithuania: 52540 Tons",
                        "text": "DEU to Lithuania: 52540 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:5b9550",
                        "lonsrc": "lviktor:105:75dffd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 53.65285869615715,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b57112"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 2.14332
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Germany: 214332 Tons",
                        "text": "CZE to Germany: 214332 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:83b19d",
                        "lonsrc": "lviktor:105:5a5041",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -65.19513481819659,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:027ec6"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.9841700000000001
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Austria: 98417 Tons",
                        "text": "CZE to Austria: 98417 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:f004ce",
                        "lonsrc": "lviktor:105:977553",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -158.80805127609625,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:3ed26d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.7530000000000001
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Slovakia: 75300 Tons",
                        "text": "CZE to Slovakia: 75300 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7ec535",
                        "lonsrc": "lviktor:105:62f45f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 110.9906164366688,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:5d3a96"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.74743
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Poland: 74743 Tons",
                        "text": "CZE to Poland: 74743 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:47501c",
                        "lonsrc": "lviktor:105:7e989c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 50.85800841183817,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:5b1416"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 2.10747
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Portugal: 210747 Tons",
                        "text": "ESP to Portugal: 210747 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:ef8aa9",
                        "lonsrc": "lviktor:105:41edda",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -97.95156255711332,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:8f3899"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 1.5200200000000001
                        },
                        "mode": "lines+markers",
                        "name": "ESP to France: 152002 Tons",
                        "text": "ESP to France: 152002 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:7163f6",
                        "lonsrc": "lviktor:105:115923",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 34.16765535979212,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:154389"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.75714
                        },
                        "mode": "lines+markers",
                        "name": "HRV to Slovenia: 75714 Tons",
                        "text": "HRV to Slovenia: 75714 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:5e309c",
                        "lonsrc": "lviktor:105:13607d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -7.674554018338625,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:822566"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.7390500000000001
                        },
                        "mode": "lines+markers",
                        "name": "HRV to Bosnia and Herzegovina: 73905 Tons",
                        "text": "HRV to Bosnia and Herzegovina: 73905 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:4f60da",
                        "lonsrc": "lviktor:105:925c66",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 122.93846914326014,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:f84867"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 3.5670900000000003
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Ukraine: 356709 Tons",
                        "text": "ROU to Ukraine: 356709 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:105:117411",
                        "lonsrc": "lviktor:105:93277a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 55.0627445246073,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:105:b151f3"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {
                            "lat": 48,
                            "lon": 10
                        },
                        "lataxis": {
                            "range": [
                                35,
                                60
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -5,
                                25
                            ]
                        },
                        "showland": true,
                        "landcolor": "rgb(243, 243, 243)",
                        "showocean": true,
                        "oceancolor": "rgb(215, 230, 250)",
                        "projection": {
                            "type": "equirectangular"
                        },
                        "countrycolor": "rgb(204, 204, 204)",
                        "showcountries": true
                    },
                    "title": {
                        "text": "Imports Volume of 4401: for European Countries"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lviktor",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 14:45:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lviktor",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T08:16:36.101127Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Gilzman/22.embed",
            "fid": "Gilzman:22",
            "filename": "Plot 22",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Gilzman/22/9_NVEHX8LZ4XBBR3NSFDI2RDDP0EHZ1A.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Gilzman/22/2_VMLO8OIV3753JOVQVYEHXYOBDVYQ6I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Gilzman/22/8_0Q6EKI2DKDB84EJ7P48J9CIOS62L6B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Gilzman/22/9_NVEHX8LZ4XBBR3NSFDI2RDDP0EHZ1A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Gilzman:22",
                "plots": "https://api.plotly.com/v2/plots/Gilzman:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=Gilzman"
            },
            "owner": "Gilzman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~Gilzman/22/",
            "world_readable": true,
            "date_modified": "2024-09-26T18:01:40.676Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Gilzman/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Decade",
                                "y": "TotalByDecade",
                                "marker": {
                                    "color": "TotalByDecade"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "type": "bar",
                        "xsrc": "Gilzman:21:0eee22",
                        "ysrc": "Gilzman:21:7f8f7c",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "TotalByDecade"
                                }
                            },
                            "color": "#636efa"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoverinfo": "x+y",
                        "connectgaps": false,
                        "orientation": "v",
                        "textposition": "middle center"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Line Plot of Hurricane Trends by every two Decades"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1856.6377118016342,
                            2022.352266163764
                        ],
                        "title": {
                            "font": {
                                "size": 17
                            },
                            "text": "Click to enter X axis title"
                        },
                        "nticks": 0,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": false,
                        "fixedrange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            27.36842105263158
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Amount of Hurricanes "
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true
                    },
                    "bargap": 0.45999999999999996,
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "bargroupgap": 0.08
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Gilzman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/52.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-24 23:02:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Gilzman",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-05T08:06:53.503353Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lviktor/75.embed",
            "fid": "lviktor:75",
            "filename": "Imports   4418 .html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lviktor/75/9_IH5HG8LM6TH3UDJDLWAKUIQICZ5607.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lviktor/75/2_Y8TLS80EIJFX5FLB0DNSB850K2MI5E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/75/8_Y6BH87TP122Z9GO76LI6YMDHZX3EYS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/75/9_IH5HG8LM6TH3UDJDLWAKUIQICZ5607.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lviktor:75",
                "plots": "https://api.plotly.com/v2/plots/lviktor:75",
                "parent": "https://api.plotly.com/v2/folders/home?user=lviktor"
            },
            "owner": "lviktor",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~lviktor/75/",
            "world_readable": true,
            "date_modified": "2024-04-08T07:55:29.902Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lviktor/75/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "lviktor:119:c34bed",
                        "geojson": "https://raw.githubusercontent.com/python-visualization/folium/master/examples/data/world-countries.json",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgba(228, 26, 28, 0.5)"
                            ],
                            [
                                0.022727272727272728,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.045454545454545456,
                                "rgba(77, 175, 74, 0.5)"
                            ],
                            [
                                0.06818181818181818,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.09090909090909091,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.11363636363636363,
                                "rgba(255, 255, 51, 0.5)"
                            ],
                            [
                                0.13636363636363635,
                                "rgba(166, 86, 40, 0.5)"
                            ],
                            [
                                0.1590909090909091,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.18181818181818182,
                                "rgba(153, 153, 153, 0.5)"
                            ],
                            [
                                0.20454545454545456,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.22727272727272727,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.25,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.2727272727272727,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.29545454545454547,
                                "rgba(227, 26, 28, 0.5)"
                            ],
                            [
                                0.3181818181818182,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.3409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.36363636363636365,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.38636363636363635,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.4090909090909091,
                                "rgba(255, 255, 153, 0.5)"
                            ],
                            [
                                0.4318181818181818,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.45454545454545453,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.4772727272727273,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.5,
                                "rgba(166, 206, 227, 0.5)"
                            ],
                            [
                                0.5227272727272727,
                                "rgba(31, 120, 180, 0.5)"
                            ],
                            [
                                0.5454545454545454,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.5681818181818182,
                                "rgba(51, 160, 44, 0.5)"
                            ],
                            [
                                0.5909090909090909,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.6136363636363636,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.6363636363636364,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.6590909090909091,
                                "rgba(128, 26, 28, 0.5)"
                            ],
                            [
                                0.6818181818181818,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.7045454545454546,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.7272727272727273,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.75,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.7727272727272727,
                                "rgba(255, 255, 255, 0.5)"
                            ],
                            [
                                0.7954545454545454,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.8181818181818182,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.8409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.8636363636363636,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.8863636363636364,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.9090909090909091,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.9318181818181818,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.9545454545454546,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.9772727272727273,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                1.0,
                                "rgba(255, 255, 153, 0.5)"
                            ]
                        ],
                        "locationssrc": "lviktor:119:d5e34e"
                    },
                    {
                        "mode": "markers",
                        "name": "BEL Tot.: 191977 Tons",
                        "text": "BEL Tot.: 191977 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:17b587",
                        "lonsrc": "lviktor:119:9715b8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.9197700000000002,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FRA Tot.: 316675 Tons",
                        "text": "FRA Tot.: 316675 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:910e36",
                        "lonsrc": "lviktor:119:6ddcdd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.1667500000000004,
                            "color": "rgb(227, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NOR Tot.: 143782 Tons",
                        "text": "NOR Tot.: 143782 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:1f1fe4",
                        "lonsrc": "lviktor:119:3ee74b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.43782,
                            "color": "rgb(55, 126, 184)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SWE Tot.: 137052 Tons",
                        "text": "SWE Tot.: 137052 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:75e380",
                        "lonsrc": "lviktor:119:00696b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.3705200000000002,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DNK Tot.: 97856 Tons",
                        "text": "DNK Tot.: 97856 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:3fb666",
                        "lonsrc": "lviktor:119:a4169f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.9785600000000001,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "AUT Tot.: 139182 Tons",
                        "text": "AUT Tot.: 139182 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:70604a",
                        "lonsrc": "lviktor:119:9ab35d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.39182,
                            "color": "rgb(77, 175, 74)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "GBR Tot.: 403027 Tons",
                        "text": "GBR Tot.: 403027 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:42d9bc",
                        "lonsrc": "lviktor:119:ff2d5d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 4.030270000000001,
                            "color": "rgb(106, 61, 154)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "PRT Tot.: 53108 Tons",
                        "text": "PRT Tot.: 53108 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:e86099",
                        "lonsrc": "lviktor:119:771b30",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.53108,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "POL Tot.: 58551 Tons",
                        "text": "POL Tot.: 58551 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:e4093a",
                        "lonsrc": "lviktor:119:3e3055",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.5855100000000001,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ITA Tot.: 398239 Tons",
                        "text": "ITA Tot.: 398239 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:82fdfa",
                        "lonsrc": "lviktor:119:d046ca",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.9823900000000005,
                            "color": "rgb(177, 89, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NLD Tot.: 253011 Tons",
                        "text": "NLD Tot.: 253011 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:59a0b4",
                        "lonsrc": "lviktor:119:75b82e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.53011,
                            "color": "rgb(128, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CHE Tot.: 294004 Tons",
                        "text": "CHE Tot.: 294004 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:f3bdb4",
                        "lonsrc": "lviktor:119:3d6466",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.94004,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DEU Tot.: 593391 Tons",
                        "text": "DEU Tot.: 593391 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:c6a62d",
                        "lonsrc": "lviktor:119:609d84",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.933910000000001,
                            "color": "rgb(253, 191, 111)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LTU Tot.: 46662 Tons",
                        "text": "LTU Tot.: 46662 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:7aea92",
                        "lonsrc": "lviktor:119:984fe2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.46662000000000003,
                            "color": "rgb(166, 206, 227)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FIN Tot.: 48389 Tons",
                        "text": "FIN Tot.: 48389 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:a24f11",
                        "lonsrc": "lviktor:119:d4879e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.48389000000000004,
                            "color": "rgb(251, 154, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ESP Tot.: 85071 Tons",
                        "text": "ESP Tot.: 85071 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:6d157a",
                        "lonsrc": "lviktor:119:61b1f7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.8507100000000001,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CZE Tot.: 68500 Tons",
                        "text": "CZE Tot.: 68500 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:4ccb68",
                        "lonsrc": "lviktor:119:d67565",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.685,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ROU Tot.: 66008 Tons",
                        "text": "ROU Tot.: 66008 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:5ac09a",
                        "lonsrc": "lviktor:119:9a35ac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.66008,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.29703
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Austria: 29703 Tons",
                        "text": "BEL to Austria: 29703 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:9e2dfb",
                        "lonsrc": "lviktor:119:a0d930",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 112.43272227336479,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:77565b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.55234
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Austria: 55234 Tons",
                        "text": "FRA to Austria: 55234 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:a7138e",
                        "lonsrc": "lviktor:119:5354ae",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 74.83276154571337,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:cae864"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.48737
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Germany: 48737 Tons",
                        "text": "FRA to Germany: 48737 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:cad9c6",
                        "lonsrc": "lviktor:119:ea845c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 44.150895851293,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:8aa2d5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.32372
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Poland: 32372 Tons",
                        "text": "FRA to Poland: 32372 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:0501d4",
                        "lonsrc": "lviktor:119:e6bbbc",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 56.44131522628268,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:698947"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(55, 126, 184)",
                            "width": 0.50663
                        },
                        "mode": "lines+markers",
                        "name": "NOR to Sweden: 50663 Tons",
                        "text": "NOR to Sweden: 50663 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:93bc7b",
                        "lonsrc": "lviktor:119:50f54f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 87.79232230767292,
                            "color": "rgb(55, 126, 184)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:69bc88"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.35474000000000006
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Poland: 35474 Tons",
                        "text": "SWE to Poland: 35474 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:79cfef",
                        "lonsrc": "lviktor:119:1c6cac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 162.6338682756906,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:f7fba8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.33279000000000003
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Germany: 33279 Tons",
                        "text": "DNK to Germany: 33279 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:e24ec2",
                        "lonsrc": "lviktor:119:b60d41",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 176.6437063879672,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:5872c5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 0.47057000000000004
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Germany: 47057 Tons",
                        "text": "AUT to Germany: 47057 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:ed845b",
                        "lonsrc": "lviktor:119:912854",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -32.838568384491424,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:3de0d7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.6432100000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Poland: 64321 Tons",
                        "text": "GBR to Poland: 64321 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:38fc3e",
                        "lonsrc": "lviktor:119:d8a1a6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 89.65994898165786,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:021c90"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.25980000000000003
                        },
                        "mode": "lines+markers",
                        "name": "POL to Ukraine: 25980 Tons",
                        "text": "POL to Ukraine: 25980 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:7c6c0d",
                        "lonsrc": "lviktor:119:4bc3a7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 106.74469357464972,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:541650"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.27084
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Austria: 227084 Tons",
                        "text": "ITA to Austria: 227084 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:f60711",
                        "lonsrc": "lviktor:119:f6f728",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 10.929331045355212,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:b48d4f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 0.79317
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Poland: 79317 Tons",
                        "text": "NLD to Poland: 79317 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:73d1ef",
                        "lonsrc": "lviktor:119:fc157a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 87.61867297408037,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:c86fde"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 0.47078000000000003
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Germany: 47078 Tons",
                        "text": "NLD to Germany: 47078 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:4c0a30",
                        "lonsrc": "lviktor:119:7e6b50",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 112.80601501357557,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:f36b47"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 1.3516000000000001
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Germany: 135160 Tons",
                        "text": "CHE to Germany: 135160 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:e6f5c3",
                        "lonsrc": "lviktor:119:05b3c4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.159198444777843,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:01cf27"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.7761300000000001
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Austria: 77613 Tons",
                        "text": "CHE to Austria: 77613 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:f12166",
                        "lonsrc": "lviktor:119:99fc6b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.79323899618566,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:b76282"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.9279100000000002
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Austria: 192791 Tons",
                        "text": "DEU to Austria: 192791 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:3f8cb4",
                        "lonsrc": "lviktor:119:332441",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 144.3186194799946,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:2c7485"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.00447
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Poland: 100447 Tons",
                        "text": "DEU to Poland: 100447 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:625479",
                        "lonsrc": "lviktor:119:120f47",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 78.27015656162581,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:664d67"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.5141100000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Denmark: 51411 Tons",
                        "text": "DEU to Denmark: 51411 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:cff6b2",
                        "lonsrc": "lviktor:119:4dccd6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -2.992640055408799,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:1143e8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(251, 154, 153)",
                            "width": 0.28211
                        },
                        "mode": "lines+markers",
                        "name": "FIN to Estonia: 28211 Tons",
                        "text": "FIN to Estonia: 28211 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:4d0f99",
                        "lonsrc": "lviktor:119:9afd1c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -174.55570923746188,
                            "color": "rgb(251, 154, 153)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:cabcc2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.25327
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Austria: 25327 Tons",
                        "text": "ESP to Austria: 25327 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:119:9b98e8",
                        "lonsrc": "lviktor:119:ddc415",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 53.88013833011024,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:119:220575"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {
                            "lat": 48,
                            "lon": 10
                        },
                        "lataxis": {
                            "range": [
                                35,
                                60
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -5,
                                25
                            ]
                        },
                        "showland": true,
                        "landcolor": "rgb(243, 243, 243)",
                        "showocean": true,
                        "oceancolor": "rgb(215, 230, 250)",
                        "projection": {
                            "type": "equirectangular"
                        },
                        "countrycolor": "rgb(204, 204, 204)",
                        "showcountries": true
                    },
                    "title": {
                        "text": "Imports Volume of 4418: for European Countries"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lviktor",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 14:45:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lviktor",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}