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=cj0xJnA9MjAxOS0wNC0yMiswMyUzQTA3JTNBMjYuOTc4NzkyJTJCMDAlM0EwMA%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=cD0yMDE5LTA0LTIyKzAzJTNBMDclM0EzMS42ODcxNTAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNC0yMiswMyUzQTE0JTNBNTkuNjE5NzQyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-04-22T03:14:59.619742Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~skypromas/46.embed",
            "fid": "skypromas:46",
            "filename": "daily-avg-block-time-v0",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/skypromas:46/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/skypromas/46/2_D6R16S275HNPRJEZB3SYN5XWEARUIV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/skypromas/46/8_Z7YWF4WPRBZIUNHHMDVK5ZYIMZXIQO.png",
                "list-thumb": "https://api.plotly.com/v2/files/skypromas:46/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/skypromas:46",
                "plots": "https://api.plotly.com/v2/plots/skypromas:46",
                "parent": "https://api.plotly.com/v2/folders/home?user=skypromas"
            },
            "owner": "skypromas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Average daily block & Std Dev block time Graph v0",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~skypromas/46/average-daily-block-std-dev-block-time-graph-v0/",
            "world_readable": true,
            "date_modified": "2020-08-22T11:58:06.514Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~skypromas/46/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4ea8d912-464e-4c35-8e23-07f4d3d4a755",
                        "meta": {
                            "columnNames": {
                                "x": "Daily Average block time, x; Std dev daily dverage block time, x",
                                "y": "Daily Average block time, y"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Daily Average block time",
                        "type": "scatter",
                        "xsrc": "skypromas:120:39f533",
                        "ysrc": "skypromas:120:c2d590",
                        "visible": true
                    },
                    {
                        "uid": "32d150e9-fc80-47f5-a538-2f72cd0973bd",
                        "meta": {
                            "columnNames": {
                                "x": "Daily Average block time, x; Std dev daily dverage block time, x",
                                "y": "Std dev daily dverage block time, y"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Std dev daily dverage block time",
                        "type": "scatter",
                        "xsrc": "skypromas:120:39f533",
                        "ysrc": "skypromas:120:5ee757",
                        "visible": "legendonly"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 21,
                        "family": "Times New Roman"
                    },
                    "title": {
                        "text": "Average daily block & Std Dev block time Graph v0"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2019-02-16 11:24:39.12",
                            "2020-04-11 12:16:08.0044"
                        ],
                        "title": {
                            "text": "Date"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.18997630157111423,
                            29.74095329141705
                        ],
                        "title": {
                            "text": "Minute"
                        },
                        "autorange": true
                    },
                    "shapes": [
                        {
                            "x0": "2019-02-17 02:55:54.5455",
                            "x1": "2020-04-10 20:44:52.5789",
                            "y0": 9.983488267878798,
                            "y1": 10.011243011770805,
                            "line": {
                                "dash": "longdash",
                                "color": "rgb(245, 8, 38)",
                                "width": 4
                            },
                            "type": "line",
                            "xref": "x",
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "showlegend": false,
                    "plot_bgcolor": "rgb(230,230,230)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~skypromas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 05:36:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "skypromas",
                "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": "2019-04-22T03:14:14.513419Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dasusweb/19.embed",
            "fid": "Dasusweb:19",
            "filename": "Plot 19",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Dasusweb:19/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dasusweb/19/2_P6307P12HBMBK75BV0WR8YJ8RPCWRV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dasusweb/19/8_GY1KYN7CNSVV0FHE4IANGVO4CAC4OR.png",
                "list-thumb": "https://api.plotly.com/v2/files/Dasusweb:19/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dasusweb:19",
                "plots": "https://api.plotly.com/v2/plots/Dasusweb:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=Dasusweb"
            },
            "owner": "Dasusweb",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Dasusweb/19/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:14:14.529Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dasusweb/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Dasusweb:18:4ceb45",
                        "ysrc": "Dasusweb:18:ca4cb2",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "First Page Visibility - Pre and Post Remodeling"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            39.22105263157894
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Percentage"
                        },
                        "autorange": true
                    },
                    "bargap": 0.65,
                    "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/~Dasusweb",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-16 17:02:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dasusweb",
                "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": "2019-04-22T03:13:39.732025Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~skace/102.embed",
            "fid": "skace:102",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/skace:102/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/skace:102/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/skace:102/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/skace:102/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/skace:102",
                "plots": "https://api.plotly.com/v2/plots/skace:102",
                "parent": "https://api.plotly.com/v2/folders/home?user=skace"
            },
            "owner": "skace",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Network graph made with Python",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~skace/102/network-graph-made-with-python/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:13:40.725Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~skace/102/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b58af2c9-9aea-440e-8dd9-1c4f4d9cd11b",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "skace:103:7a72b6",
                        "ysrc": "skace:103:c62bb1",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "ed74b41e-6601-4c21-a7d5-1f7fafd27132",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "skace:103:59a088",
                        "ysrc": "skace:103:24c8b3",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "size": 10,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "skace:103:986cc5",
                            "showscale": false,
                            "colorscale": "Rainbow",
                            "reversescale": true
                        },
                        "textsrc": "skace:103:72cbb7",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Network graph made with Python"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~skace",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-26 17:29:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "skace",
                "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": "2019-04-22T03:12:43.227940Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AfzalAhmad/4.embed",
            "fid": "AfzalAhmad:4",
            "filename": "dual_pose_z",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/AfzalAhmad:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AfzalAhmad/4/2_5ZCDEAISE1Z769RHKDUQYCI93QLGGR.png",
                "block-thumb": "https://api.plotly.com/v2/files/AfzalAhmad:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/AfzalAhmad:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AfzalAhmad:4",
                "plots": "https://api.plotly.com/v2/plots/AfzalAhmad:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=AfzalAhmad"
            },
            "owner": "AfzalAhmad",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~AfzalAhmad/4/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:12:58.575Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AfzalAhmad/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "UAV1",
                        "type": "scatter",
                        "xsrc": "AfzalAhmad:5:5154f0",
                        "ysrc": "AfzalAhmad:5:f46e24",
                        "marker": {
                            "size": 1
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "UAV2",
                        "type": "scatter",
                        "xsrc": "AfzalAhmad:5:5154f0",
                        "ysrc": "AfzalAhmad:5:ccb219",
                        "marker": {
                            "size": 1
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Position in Z-axis"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.278505817932921,
                            92.32450581793293
                        ],
                        "title": {
                            "text": "Time in seconds"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.2697780723007595,
                            4.8395056681297595
                        ],
                        "title": {
                            "text": "Position in Z-axis (m)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AfzalAhmad",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-21 19:53:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AfzalAhmad",
                "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": "2019-04-22T03:11:57.710625Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kecbenson/38.embed",
            "fid": "kecbenson:38",
            "filename": "plot from API (18)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kecbenson/38/9_KL1PQ3BFZ3FZ9U0ZRMH0QV478EMPO6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kecbenson/38/2_YKKYRJQUCABRYQ6CNAPR1TSG9MPRHE.png",
                "block-thumb": "https://api.plotly.com/v2/files/kecbenson:38/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kecbenson/38/9_KL1PQ3BFZ3FZ9U0ZRMH0QV478EMPO6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kecbenson:38",
                "plots": "https://api.plotly.com/v2/plots/kecbenson:38",
                "parent": "https://api.plotly.com/v2/folders/home?user=kecbenson"
            },
            "owner": "kecbenson",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Overfitting / Underfitting Curve for k-Nearest Neighbors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kecbenson/38/overfitting-underfitting-curve-for-k-nearest-neighbors/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:11:58.239Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kecbenson/38/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b7c65ef5-e820-4bc8-9182-51b2ddbe307c",
                        "mode": "lines+markers",
                        "name": "Training Set",
                        "type": "scatter",
                        "xsrc": "kecbenson:39:86cb01",
                        "ysrc": "kecbenson:39:7823e9"
                    },
                    {
                        "uid": "3f63c49c-8c6f-49d0-a900-dc3da1fbd036",
                        "mode": "lines+markers",
                        "name": "Testing Set",
                        "type": "scatter",
                        "xsrc": "kecbenson:39:86cb01",
                        "ysrc": "kecbenson:39:0c5702"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Overfitting / Underfitting Curve for k-Nearest Neighbors"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Number of Neighbors k"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Accuracy Score"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kecbenson",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "Kevin",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 23:42:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kecbenson",
                "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": "2019-04-22T03:09:56.577289Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~CelesteNC/3.embed",
            "fid": "CelesteNC:3",
            "filename": "S02_GT1B",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/CelesteNC/3/9_48INA8AW898XXJ93V2YFE58MCMXGKA.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/CelesteNC:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/CelesteNC/3/8_964FGYM8KQ4S7GW2GAU73603DTB2CK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/CelesteNC/3/9_48INA8AW898XXJ93V2YFE58MCMXGKA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/CelesteNC:3",
                "plots": "https://api.plotly.com/v2/plots/CelesteNC:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=CelesteNC"
            },
            "owner": "CelesteNC",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~CelesteNC/3/",
            "world_readable": true,
            "date_modified": "2019-04-26T15:12:44.276Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~CelesteNC/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "CelesteNC:2:83a324",
                        "ysrc": "CelesteNC:2:30d836",
                        "zsrc": "CelesteNC:2:0b89ee",
                        "marker": {
                            "cmax": 1,
                            "cmin": 0.2,
                            "size": 2.5,
                            "cauto": false,
                            "colorsrc": "CelesteNC:2:0b89ee",
                            "colorscale": [
                                [
                                    0,
                                    "#67001f"
                                ],
                                [
                                    0.1,
                                    "#b2182b"
                                ],
                                [
                                    0.2,
                                    "#d6604d"
                                ],
                                [
                                    0.3,
                                    "#f4a582"
                                ],
                                [
                                    0.4,
                                    "#fddbc7"
                                ],
                                [
                                    0.5,
                                    "#f7f7f7"
                                ],
                                [
                                    0.6,
                                    "#d1e5f0"
                                ],
                                [
                                    0.7,
                                    "#92c5de"
                                ],
                                [
                                    0.8,
                                    "#4393c3"
                                ],
                                [
                                    0.9,
                                    "#2166ac"
                                ],
                                [
                                    1,
                                    "#053061"
                                ]
                            ],
                            "reversescale": false
                        },
                        "autocolorscale": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "CelesteNC:2:3b6943",
                        "ysrc": "CelesteNC:2:1f3116",
                        "zsrc": "CelesteNC:2:3d710f",
                        "marker": {
                            "size": 4,
                            "symbol": "x"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "range": [
                                -35,
                                35
                            ],
                            "autorange": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -35,
                                35
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "dtick": 0.4,
                            "range": [
                                -1,
                                1
                            ],
                            "tick0": 0.2,
                            "title": {
                                "text": "View"
                            },
                            "tickmode": "linear",
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.2293098535671187,
                                "y": -1.7657944283578304,
                                "z": 0.271705913548729
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~CelesteNC",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.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": "2019-04-02 20:35:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "CelesteNC",
                "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": "2019-04-22T03:09:41.184751Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wholol/92.embed",
            "fid": "wholol:92",
            "filename": "plot from API (21)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/wholol:92/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/wholol:92/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wholol/92/8_7NRQ9SHN27NAGWP9BU8D4SOKB0X1GU.png",
                "list-thumb": "https://api.plotly.com/v2/files/wholol:92/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wholol:92",
                "plots": "https://api.plotly.com/v2/plots/wholol:92",
                "parent": "https://api.plotly.com/v2/folders/home?user=wholol"
            },
            "owner": "wholol",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Rail infrastructure energy",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~wholol/92/rail-infrastructure-energy/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:09:41.697Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wholol/92/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "wholol:93:b8af2b",
                            "sourcesrc": "wholol:93:185dd4",
                            "targetsrc": "wholol:93:96470f"
                        },
                        "node": {
                            "pad": 100,
                            "line": {
                                "color": "green",
                                "width": 0.5
                            },
                            "domain": {
                                "x": [
                                    0,
                                    1
                                ],
                                "y": [
                                    0,
                                    1
                                ]
                            },
                            "colorsrc": "wholol:93:557ed1",
                            "labelsrc": "wholol:93:d50ab8",
                            "thickness": 100,
                            "orientation": "h",
                            "valueformat": ".0f",
                            "valuesuffix": "GJ"
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30
                    },
                    "title": "Rail infrastructure energy"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~wholol",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2019-03-13 12:41:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wholol",
                "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": "2019-04-22T03:09:14.512688Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~11518176/3.embed",
            "fid": "11518176:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/11518176/3/9_6P8CVTR39II546JMG9QOMHWNMRQK1E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/11518176/3/2_ZQYIHNOCS95HG7ZVNDGQ7RVUZ7QI92.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/11518176/3/8_Q2OM9XNBYQZ6C7RQK8Q3FM0LYVRMLP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/11518176/3/9_6P8CVTR39II546JMG9QOMHWNMRQK1E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/11518176:3",
                "plots": "https://api.plotly.com/v2/plots/11518176:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=11518176"
            },
            "owner": "11518176",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~11518176/3/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:09:14.535Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~11518176/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e638af",
                        "name": "T-cell_ALL(16)",
                        "type": "box",
                        "ysrc": "11518176:2:84c71d",
                        "marker": {
                            "color": "hsl(0,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "46ecee",
                        "name": "leukemia_other(5)",
                        "type": "box",
                        "ysrc": "11518176:2:f31821",
                        "marker": {
                            "color": "hsl(36.92307692307692,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "24d05b",
                        "name": "AML(39)",
                        "type": "box",
                        "ysrc": "11518176:2:9551de",
                        "marker": {
                            "color": "hsl(46.15384615384615,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "b5c72b",
                        "name": "B-cell_ALL(13)",
                        "type": "box",
                        "ysrc": "11518176:2:e224c0",
                        "marker": {
                            "color": "hsl(92.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "335d03",
                        "name": "lymphoma_DLBCL(18)",
                        "type": "box",
                        "ysrc": "11518176:2:904163",
                        "marker": {
                            "color": "hsl(212.30769230769232,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "3747a5",
                        "name": "CML(15)",
                        "type": "box",
                        "ysrc": "11518176:2:84a911",
                        "marker": {
                            "color": "hsl(230.76923076923077,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "c86edd",
                        "name": "lymphoma_Burkitt(11)",
                        "type": "box",
                        "ysrc": "11518176:2:6c1144",
                        "marker": {
                            "color": "hsl(240,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "ced584",
                        "name": "lymphoma_Hodgkin(13)",
                        "type": "box",
                        "ysrc": "11518176:2:645c69",
                        "marker": {
                            "color": "hsl(295.38461538461536,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "114898",
                        "name": "B-cell_lymphoma_other(16)",
                        "type": "box",
                        "ysrc": "11518176:2:a9303c",
                        "marker": {
                            "color": "hsl(313.84615384615387,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "c93ad7",
                        "name": "T-cell_lymphoma_other(11)",
                        "type": "box",
                        "ysrc": "11518176:2:460ec5",
                        "marker": {
                            "color": "hsl(332.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "f36700",
                        "name": "multiple_myeloma(29)",
                        "type": "box",
                        "ysrc": "11518176:2:60c0b0",
                        "marker": {
                            "color": "hsl(350.7692307692308,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "mRNA expression (RNAseq): CAMK2G"
                    },
                    "width": 1383,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            10.5
                        ],
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.834430914007485,
                            5.537597420577585
                        ],
                        "autorange": true
                    },
                    "height": 750,
                    "legend": {
                        "bgcolor": "#E2E2E2",
                        "bordercolor": "#222",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 250,
                        "pad": 5
                    },
                    "hovermode": "closest",
                    "showticklabels": true
                }
            },
            "height": 750,
            "width": 1383,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~11518176",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2019-04-22 02:54:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "11518176",
                "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": "2019-04-22T03:07:50.376074Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~skace/100.embed",
            "fid": "skace:100",
            "filename": "plot from API (23)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/skace:100/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/skace:100/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/skace:100/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/skace:100/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/skace:100",
                "plots": "https://api.plotly.com/v2/plots/skace:100",
                "parent": "https://api.plotly.com/v2/folders/home?user=skace"
            },
            "owner": "skace",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Network graph made with Python",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~skace/100/network-graph-made-with-python/",
            "world_readable": true,
            "date_modified": "2019-04-22T03:07:50.943Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~skace/100/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d1ecf0b8-c8e2-4b1e-b771-905b353a40b4",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "skace:101:539052",
                        "ysrc": "skace:101:d252ed",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "5c51cc24-9f4b-4e7e-a158-b11827aae42c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "skace:101:024e90",
                        "ysrc": "skace:101:5f9536",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "size": 10,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "skace:101:57293f",
                            "showscale": false,
                            "colorscale": "Rainbow",
                            "reversescale": true
                        },
                        "textsrc": "skace:101:f43297",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Network graph made with Python"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~skace",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-26 17:29:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "skace",
                "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": "2019-04-22T03:07:31.687150Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loantranvn810/10.embed",
            "fid": "loantranvn810:10",
            "filename": "dendrogram_with_heatmap",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/loantranvn810:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/loantranvn810:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/loantranvn810:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/loantranvn810:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loantranvn810:10",
                "plots": "https://api.plotly.com/v2/plots/loantranvn810:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=loantranvn810"
            },
            "owner": "loantranvn810",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~loantranvn810/10/",
            "world_readable": true,
            "date_modified": "2019-04-22T21:06:16.705Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loantranvn810/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0fdc8493-823d-4b25-9e7d-b9b5d1334dec",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9af11d",
                        "ysrc": "loantranvn810:11:3d95b3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7366aa83-1df4-4232-a0a3-7f845d564d12",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b64392",
                        "ysrc": "loantranvn810:11:771a3f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8c1743d5-2377-4cc5-ab11-764260fd1af7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2c5614",
                        "ysrc": "loantranvn810:11:d8c87e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ff67db73-c499-4b0c-85b8-d3681bda8209",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ec7058",
                        "ysrc": "loantranvn810:11:252a09",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b0c2d3fe-81af-40e9-9184-94546a729c5f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:052b1d",
                        "ysrc": "loantranvn810:11:d1e0a2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "25b8d2db-5b8c-4d14-8b40-203bb7de2628",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:05f8fd",
                        "ysrc": "loantranvn810:11:fe28ca",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aa170321-31f9-41fa-83c0-c2aa4b45f423",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8821fc",
                        "ysrc": "loantranvn810:11:30dc84",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a359d78f-5378-4fd2-ad26-285090b3250d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c84fbb",
                        "ysrc": "loantranvn810:11:e06f2c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8557a646-b5b8-473a-bacc-7ab5c67989f3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dab7aa",
                        "ysrc": "loantranvn810:11:1a5f90",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ba5a08a2-9ff2-480a-92e8-1d761e2b4152",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:70fcf7",
                        "ysrc": "loantranvn810:11:0af1bd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "644d4910-5edd-45b5-a58e-019a732bd03e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:67fd96",
                        "ysrc": "loantranvn810:11:f6f893",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "148c6142-0ed9-4851-a8a9-f2851ecea9d0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e76e16",
                        "ysrc": "loantranvn810:11:981e1f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6260e0db-765b-4d56-a926-3aa70a28bf06",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cd0f18",
                        "ysrc": "loantranvn810:11:81f068",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "110a8685-1202-46e4-b8c4-da3ef5de87cc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1ecd3d",
                        "ysrc": "loantranvn810:11:6d5de6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d9f736ed-9e60-43ec-bf1b-142cc5f84739",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:723825",
                        "ysrc": "loantranvn810:11:446a70",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a5494d2a-15c2-41d0-8ca6-41da7ae6714d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f95cda",
                        "ysrc": "loantranvn810:11:d4c59d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d09a3305-c86c-4cbc-96eb-dd5c1bb7e061",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ea8210",
                        "ysrc": "loantranvn810:11:ac6b2a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "19835dfa-9668-4384-8e61-4b3643b3526c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0995ee",
                        "ysrc": "loantranvn810:11:da7d1b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4491e97b-4e9a-44b5-acc5-1cc4be8a73a1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:09150d",
                        "ysrc": "loantranvn810:11:f8ce1d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ff3eef8c-3549-4a05-9a0c-c330af1145a8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5fe9d4",
                        "ysrc": "loantranvn810:11:5c7dff",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a1ae73a3-7021-4959-b892-c4bd72abf69e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dd69de",
                        "ysrc": "loantranvn810:11:eb3268",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3d4188b5-4a24-4433-b7cd-c3bd901dd3e2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8740f6",
                        "ysrc": "loantranvn810:11:8bc14d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e9d70201-da78-416c-83ba-60404c5973f4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1ca5aa",
                        "ysrc": "loantranvn810:11:30caee",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b381ee0b-e108-4bee-b9f5-14e8e347cf38",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a35b6d",
                        "ysrc": "loantranvn810:11:44adfb",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aa77c7b7-fbe4-4eaa-84e2-45ec45242148",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6c09d9",
                        "ysrc": "loantranvn810:11:ed8e81",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f2bed4ce-a6b2-4774-9094-7dca63fa2dc2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5474e2",
                        "ysrc": "loantranvn810:11:20432f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aee3e68e-0904-470c-a049-7ee2deadc0af",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:fca20c",
                        "ysrc": "loantranvn810:11:7d7091",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f87ebf4d-75f9-448f-9664-11a54d24fb76",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:555918",
                        "ysrc": "loantranvn810:11:eff7c9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a6554f00-47ab-4160-ace8-fb9198a4c649",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:370f13",
                        "ysrc": "loantranvn810:11:ef03db",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eb86d586-ca76-4931-a5bb-814709b45f25",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:fad477",
                        "ysrc": "loantranvn810:11:a61a30",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3416af7b-879d-4e60-b06a-c2759270e27c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:362e45",
                        "ysrc": "loantranvn810:11:e4e2b0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a8779974-7687-4ec1-81ca-a22279467d16",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0ee8cc",
                        "ysrc": "loantranvn810:11:37a44a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "78f08020-7d9a-4ffb-b0d3-44d619d5792f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9bff3e",
                        "ysrc": "loantranvn810:11:92274c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bda78d34-e825-440c-bfa4-ae546cdcaeb2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0418fe",
                        "ysrc": "loantranvn810:11:483053",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "35245749-222d-4f85-9da7-07163c7e157e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:82f035",
                        "ysrc": "loantranvn810:11:49ee53",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "68b059f8-2d34-4204-aa0a-bf45808e3cf4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9ead1a",
                        "ysrc": "loantranvn810:11:c766fa",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a0198948-30c0-4c1e-9713-1fff8aee3b90",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2b5986",
                        "ysrc": "loantranvn810:11:2c50c1",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d0e2fa7f-06b8-4691-a361-042ff6cff2d6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5c2b12",
                        "ysrc": "loantranvn810:11:5d22b4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7c603732-d56d-4b56-b63f-3d49c4763b18",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:39d530",
                        "ysrc": "loantranvn810:11:e26e96",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f03f6473-6f92-4b62-bfcd-670afb280376",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:efa25c",
                        "ysrc": "loantranvn810:11:59dc00",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b36e198-f727-4ee9-8e36-db649dab04d1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c286fb",
                        "ysrc": "loantranvn810:11:cba873",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "be774629-191e-4eca-b85e-986761dde17e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f454a8",
                        "ysrc": "loantranvn810:11:ffc284",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4e52c51b-026c-45ce-a1b6-7fcaef7a3acb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:09600e",
                        "ysrc": "loantranvn810:11:3c9300",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "41c1718a-e67e-4abd-8aa4-d76e2fbcc11d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6a1fa8",
                        "ysrc": "loantranvn810:11:6fb0c9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ddf4354d-fb51-4268-b507-5c7936218840",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:07eac1",
                        "ysrc": "loantranvn810:11:ce6385",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2b62fc39-b342-4b8e-8867-dee210b8f88d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c26ad7",
                        "ysrc": "loantranvn810:11:967e9f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "90befd4b-cc44-4c69-aed6-fafa336102f3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d91288",
                        "ysrc": "loantranvn810:11:3d52f7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d66aa567-f91a-4605-a20b-862e1d1d7eca",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d9f68c",
                        "ysrc": "loantranvn810:11:b10a38",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "077cbb14-246a-4de5-8aca-c2d1a24a87f6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:22b649",
                        "ysrc": "loantranvn810:11:ace19c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a97f4d8d-524b-4d0d-b5dd-91a03290d1bc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:97bc8c",
                        "ysrc": "loantranvn810:11:a648e7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cb4dfb0d-bfad-4e8a-9d47-47441bf84078",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:059ae8",
                        "ysrc": "loantranvn810:11:467a51",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fdd2a043-e893-4667-99c4-f56aa867849d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7c7c29",
                        "ysrc": "loantranvn810:11:2c8f27",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9a8e4913-c864-4793-a8c7-23af232ff217",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e50df5",
                        "ysrc": "loantranvn810:11:eff8b4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f8b96398-0198-4e5e-859b-88ec6e55fcfb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7596bb",
                        "ysrc": "loantranvn810:11:0417ab",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "993c0fae-1519-4c8d-8a79-26c5d99580d9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8aba2e",
                        "ysrc": "loantranvn810:11:07c36b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b48fe47a-6d51-4c3f-8777-a840911f7641",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:db7450",
                        "ysrc": "loantranvn810:11:0d0286",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5bc27dbf-3e3a-41d9-9db5-e014551c83b4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:189bd4",
                        "ysrc": "loantranvn810:11:1f1992",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a052b595-f755-45a6-a76f-b34fc1956998",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2a7a2f",
                        "ysrc": "loantranvn810:11:2ce3e2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "575d21af-905d-4923-b8ca-228aede48f82",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cbef74",
                        "ysrc": "loantranvn810:11:893ac3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "46c6925a-2944-4df3-8b87-927c45130d10",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c140a9",
                        "ysrc": "loantranvn810:11:13a5e0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "90eb0909-0672-4a3e-8fb9-38e181747956",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:16c189",
                        "ysrc": "loantranvn810:11:d95d85",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "59773130-c817-44a6-bea7-1f6c55fad4ca",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3e8de8",
                        "ysrc": "loantranvn810:11:737bf5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "39517f1c-4385-4fbe-a29e-34fdc1a29c2e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:125619",
                        "ysrc": "loantranvn810:11:a0693f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2ec5357b-6509-49c3-9f6a-5b99c24cdb85",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:937105",
                        "ysrc": "loantranvn810:11:eccf70",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3df4def8-e00e-448c-b6dd-0cfdac4f7f65",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aaaf92",
                        "ysrc": "loantranvn810:11:54c22a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b077383-f9d8-49f7-8776-6938a295f6f0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ff3d77",
                        "ysrc": "loantranvn810:11:be36db",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aebf4f48-3e79-4aab-8b27-b9ca6248bd2b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1db7b9",
                        "ysrc": "loantranvn810:11:9d5fb5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b33f499-e695-42ca-b6f0-b8b8c33a9354",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:16deb6",
                        "ysrc": "loantranvn810:11:785ed3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b9cf237c-2a99-4833-ad8e-4db0c91ee430",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aa3e84",
                        "ysrc": "loantranvn810:11:07ce9b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bdc78795-9e09-4ba0-84c0-915c91a24a7b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3b38ab",
                        "ysrc": "loantranvn810:11:7bf9b7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "dd028f8f-ef39-49bf-a2e7-a47f17b1cac8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7a6e3c",
                        "ysrc": "loantranvn810:11:f37f8c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3e588fa9-195f-4731-b767-72e5fe06bebe",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4fc84b",
                        "ysrc": "loantranvn810:11:21d858",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b1d2b154-e536-425a-9c66-c126de06361d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3dae03",
                        "ysrc": "loantranvn810:11:d7a378",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3df588d0-09d1-414e-b60e-27cf428c8fac",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:79694d",
                        "ysrc": "loantranvn810:11:145f76",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "05d3e520-a964-43da-9d7d-e7ff46f93768",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6221a4",
                        "ysrc": "loantranvn810:11:57dd8d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d1e1e513-f705-46dc-8031-8fd44ca8b75b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6d6688",
                        "ysrc": "loantranvn810:11:5dfacd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2d65db91-644c-413b-b450-c02059887175",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5d3e0d",
                        "ysrc": "loantranvn810:11:9b24ea",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3812f56d-68a2-4394-9a44-69f0c097d9e3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:26e81d",
                        "ysrc": "loantranvn810:11:c6a136",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "062813fe-c360-4bf2-9a83-d634f7851e57",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2ec858",
                        "ysrc": "loantranvn810:11:d5e2d4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7d570b2c-f456-4b15-abfc-ed83610de2a5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1bb558",
                        "ysrc": "loantranvn810:11:cfecd5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a0a71d8c-dd8d-4b7b-a40a-3dcee84fed6e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4e5778",
                        "ysrc": "loantranvn810:11:96f5fe",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5059d275-e54b-4698-a29a-23d45d1953f2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3a526e",
                        "ysrc": "loantranvn810:11:501203",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0d066eb5-e8e7-4fc3-a9ce-2cd8e64e9077",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1e14a6",
                        "ysrc": "loantranvn810:11:db41d5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "483fa413-55f7-4d1a-a4b6-f473eea657d2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ea5867",
                        "ysrc": "loantranvn810:11:97b11b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "52cb6c4d-1af8-438b-a3b6-dcdcb01718af",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:da53c5",
                        "ysrc": "loantranvn810:11:5f7927",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ee985cdd-2e39-4fe4-aafe-bee3c692b5e8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5d9b58",
                        "ysrc": "loantranvn810:11:2ce8b4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2e41acd8-dd6c-40b0-b776-4125d43b1a23",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9d4af7",
                        "ysrc": "loantranvn810:11:7e729c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1d619c6a-f740-4dcc-b37d-812a64baa6e4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9a404b",
                        "ysrc": "loantranvn810:11:bbf584",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b165d46d-a8a4-4d13-b81b-c400089bb2af",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d89332",
                        "ysrc": "loantranvn810:11:e57067",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bc658764-48cf-4bbc-8638-4bcb2d322312",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:29e8af",
                        "ysrc": "loantranvn810:11:aefd48",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b6d3ba6b-aad5-486d-a79b-5ce6d434a8b2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:db4e17",
                        "ysrc": "loantranvn810:11:0e18c5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c0879c01-894b-4532-9fa7-ffd2ccd694e7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d30a2e",
                        "ysrc": "loantranvn810:11:bc6c86",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "187869bc-55a2-42d3-b125-7ff66edfd6c7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:579404",
                        "ysrc": "loantranvn810:11:589a83",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ee87043b-4125-44cd-9c0d-28ddddf6bc91",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:982a9b",
                        "ysrc": "loantranvn810:11:4308a5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1c380e94-0769-4f09-91eb-f8e950ed1042",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:db55f8",
                        "ysrc": "loantranvn810:11:6ee43e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "12f1d94c-c958-4f09-8ed3-b6bef49f8819",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b3e0b8",
                        "ysrc": "loantranvn810:11:193ed0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0ffabf8e-ad38-4467-9a56-98da39371425",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:68afd3",
                        "ysrc": "loantranvn810:11:196263",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "58d20dc5-6b0a-4fef-9951-384957604acc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dfc554",
                        "ysrc": "loantranvn810:11:290934",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b94ff9ac-f68c-4a5a-bec1-b73d86287c10",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:149707",
                        "ysrc": "loantranvn810:11:e8c29b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "184e50c9-377d-475d-bb3a-679d1fd12999",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c20b7b",
                        "ysrc": "loantranvn810:11:8aa79f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c1f8d62a-7d96-469a-a0bf-e4144e211398",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dafe40",
                        "ysrc": "loantranvn810:11:2f82d2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a8b9be95-231b-4a16-a07c-b38a94641365",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dc6fcb",
                        "ysrc": "loantranvn810:11:0c1f32",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ea5391e8-c908-4ba2-90f2-27579da3ad0f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e7f12c",
                        "ysrc": "loantranvn810:11:667685",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "655492c0-905a-4c54-8f40-952a185e9b47",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:42fd83",
                        "ysrc": "loantranvn810:11:9861e7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "262d4f61-53d3-41a9-99a2-5dba78b028dc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d1d89c",
                        "ysrc": "loantranvn810:11:ed6193",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "683af021-b271-4a89-801d-327854413403",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ce4d91",
                        "ysrc": "loantranvn810:11:8a9487",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "21e3bf70-ba87-4348-8e6f-282c01ddbd75",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:76e167",
                        "ysrc": "loantranvn810:11:51a44e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "17bc911d-4cdc-4e3c-b2bc-6f32cc377028",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:608f02",
                        "ysrc": "loantranvn810:11:304f57",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "342c1fb0-efde-4300-a52b-3a329f3019fe",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:62e436",
                        "ysrc": "loantranvn810:11:6904c0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6c0db911-fc03-4a03-9a74-cab5f1855e0e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4af1bb",
                        "ysrc": "loantranvn810:11:37fd26",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6eb2d9dc-9b04-4d1b-90c9-23555f6110cf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bbe9c1",
                        "ysrc": "loantranvn810:11:dba1d8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "64ee0dab-0010-46b2-ac9f-29d38d45a432",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:925b96",
                        "ysrc": "loantranvn810:11:829001",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "931683b6-301c-47d0-b769-a512182b3dfa",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:528cd6",
                        "ysrc": "loantranvn810:11:b84bd7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5f111a1d-c4af-45d5-af4d-2f40b9ea7bdd",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f97ba3",
                        "ysrc": "loantranvn810:11:527f0e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "65f4adcc-9da0-4ad7-ac0f-139944ff465a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f11c69",
                        "ysrc": "loantranvn810:11:e95327",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f0d8f3b0-564a-494e-b648-e5711c5d3932",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9cbd50",
                        "ysrc": "loantranvn810:11:2ebcb6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1a881f5f-c58c-4731-947d-e14c94f2e65e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:de1d0f",
                        "ysrc": "loantranvn810:11:ba4650",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a86d4a5a-80df-4e69-9172-93775d008d1c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d65699",
                        "ysrc": "loantranvn810:11:463722",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9296eadc-4d5b-44dd-b9d2-3d4234552b85",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:78c048",
                        "ysrc": "loantranvn810:11:1b66c5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "57674d55-f3a1-4e7f-a457-f74f6195775d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:13cb6c",
                        "ysrc": "loantranvn810:11:2258e4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b4bf46f8-5bb8-4487-b7ed-c70916c44b99",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:27db3b",
                        "ysrc": "loantranvn810:11:5dcb8a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c5158932-d163-49bf-81ce-725b19ebbef8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:39a63f",
                        "ysrc": "loantranvn810:11:b1d0fe",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cba928e2-7202-46ea-83da-bbccf79835a8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:868f53",
                        "ysrc": "loantranvn810:11:60354e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "36992e04-0d5e-4896-8c5b-01466ed5932e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1746ff",
                        "ysrc": "loantranvn810:11:0004c8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a694c8aa-f68f-4bde-bfce-5adef22694d5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4b7dc6",
                        "ysrc": "loantranvn810:11:a85af5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ee863208-fa9d-4821-8b47-d7947a1298e6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f3e395",
                        "ysrc": "loantranvn810:11:519294",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b17dbe12-ed76-44d5-a5f5-e6001f5a838b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:880c93",
                        "ysrc": "loantranvn810:11:e53e07",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "08b0d525-eebb-4632-a0ae-07c2fb6b7765",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6a0181",
                        "ysrc": "loantranvn810:11:ef9ed4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fa47d2ab-c968-461f-8529-95177b428150",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9c7463",
                        "ysrc": "loantranvn810:11:b7a1b4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9543f248-1cfb-45da-8108-f5d652ed964e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8ef696",
                        "ysrc": "loantranvn810:11:048f6a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6123beae-87b1-45ed-8911-478f752e60f7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6e6336",
                        "ysrc": "loantranvn810:11:fab208",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5f35da44-5bf9-4074-b185-d5234d61f963",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4fcda3",
                        "ysrc": "loantranvn810:11:fe950b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9a78b059-0ddd-4745-89b0-289bbcbde934",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:638efb",
                        "ysrc": "loantranvn810:11:d4396a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "12133aa3-4057-47ff-a535-a26d6feececf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:64907d",
                        "ysrc": "loantranvn810:11:7785dc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "02a9e8a2-e0e1-4b8a-9730-0ee597d1bce8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4bd564",
                        "ysrc": "loantranvn810:11:34e6fc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "08c03692-88a6-4da8-8e2d-98c3b7a92b05",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:fb9a08",
                        "ysrc": "loantranvn810:11:9f0178",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f046fc7c-bfa4-47c2-9cb2-5956eef0d6a7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ae3c48",
                        "ysrc": "loantranvn810:11:3bab90",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "23bcebd5-fa2d-457e-bde0-ae9744880f17",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7d4989",
                        "ysrc": "loantranvn810:11:ff0d89",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fa47c698-3b73-484a-9df2-ebaf08395e9b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:637488",
                        "ysrc": "loantranvn810:11:b2cfe2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d005ff66-f3c1-44a1-9208-8fa6c09675a3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:acc3be",
                        "ysrc": "loantranvn810:11:0271e3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c341691c-58dd-43e2-b730-991dacefdaa8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a8bb47",
                        "ysrc": "loantranvn810:11:e33aad",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eee62277-92c1-40b8-b94f-8f35bd2a2828",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1c5c6c",
                        "ysrc": "loantranvn810:11:f04232",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "320797ff-6374-4de2-9821-7e8455bd1daf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f2fe06",
                        "ysrc": "loantranvn810:11:d140d2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5efd768f-7a15-4ac0-90e1-cf94dd27757c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8e6e51",
                        "ysrc": "loantranvn810:11:2d9607",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "16caec97-4991-47b9-a92c-03cc01291e53",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3b51a6",
                        "ysrc": "loantranvn810:11:7451cd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a16dc3ee-5e21-463e-964a-87f406d50087",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3ed4f9",
                        "ysrc": "loantranvn810:11:66170a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "89170c16-6b50-49ef-836c-3cd1880aecb1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4339b4",
                        "ysrc": "loantranvn810:11:fdc75b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "08dc06c1-808c-4309-b50a-40dac7c12330",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4d959a",
                        "ysrc": "loantranvn810:11:547531",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fb0d5117-e10e-49b1-83a4-8c73c17408d4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:803978",
                        "ysrc": "loantranvn810:11:8b5955",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fd2999ca-bb2d-4c9e-998c-8b6ca163b107",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2b98c8",
                        "ysrc": "loantranvn810:11:d58b19",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "348fd6d2-1bb4-4a6d-8c84-62cec4f17f21",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:043287",
                        "ysrc": "loantranvn810:11:f3c76e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cab6b5db-1788-4079-ad65-ff44db606527",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:935638",
                        "ysrc": "loantranvn810:11:bc5bcf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7d9c528c-c5bd-41e2-a028-bcf1676fea4f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b65df6",
                        "ysrc": "loantranvn810:11:80c20e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a7f16efc-11da-4c4a-a070-51d8afed78ce",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a6b211",
                        "ysrc": "loantranvn810:11:d73f84",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "534565bb-3bf6-4738-9bd0-ca2cf81fca6d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:71ebb3",
                        "ysrc": "loantranvn810:11:37633f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "200736b0-2025-48e9-afcf-bd0bc2a0779f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3440b1",
                        "ysrc": "loantranvn810:11:5335a5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9e4839f1-5c19-4096-b1da-4f72ab657c08",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d2ca48",
                        "ysrc": "loantranvn810:11:80dfaf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "726cd2d0-8ebf-4732-bf6b-1316d4a2e5a0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0f4a28",
                        "ysrc": "loantranvn810:11:b26b65",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "33f88788-f747-416d-a0a1-c16bfc9a9e40",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2ab63c",
                        "ysrc": "loantranvn810:11:38bf93",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6526f3a7-ef24-4f53-aece-d9fd99943ec6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:37553e",
                        "ysrc": "loantranvn810:11:280183",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3a639b63-479b-4715-997f-be5f51a4c676",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6fd8e9",
                        "ysrc": "loantranvn810:11:1efc22",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c8c7adf6-3741-40fc-8dda-26d2b0cea70b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b2ab7f",
                        "ysrc": "loantranvn810:11:41f95d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cdcd8c67-68e0-48d6-8632-24404cc70656",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9e4746",
                        "ysrc": "loantranvn810:11:d1cc20",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0804f1d6-7344-494e-bfbb-3bc6b000518d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:46327a",
                        "ysrc": "loantranvn810:11:07afb5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a178eb72-b2ab-4d9d-9602-3cea85f0c47b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aba6de",
                        "ysrc": "loantranvn810:11:46d6a9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b6820daf-f292-4203-aa5c-26b37c8ef312",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e82bbe",
                        "ysrc": "loantranvn810:11:1ebb6d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aca7e64d-aa8d-49d8-b0ba-d398eff43bbd",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:11f6b5",
                        "ysrc": "loantranvn810:11:237348",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c96d06a5-2286-4bff-ae7e-045a87e898a8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:488f48",
                        "ysrc": "loantranvn810:11:500a57",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "da5738bb-7d52-428c-ad49-b2eaf3555250",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f2efb4",
                        "ysrc": "loantranvn810:11:b9985c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "519e11d9-a6c3-4cab-96dd-78a7fa52dafb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5721b2",
                        "ysrc": "loantranvn810:11:3fb111",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "129fe02d-245d-4465-8d76-9689f24eef44",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:902b15",
                        "ysrc": "loantranvn810:11:121253",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2ee5496e-26f0-445f-8233-aae1eb5ea3ad",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:71a0c9",
                        "ysrc": "loantranvn810:11:302698",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bc528182-d1d7-4f65-9a13-a6b205c0a150",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e75664",
                        "ysrc": "loantranvn810:11:165c64",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "732fef57-4630-4ac5-87a4-be6155cee086",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:34c244",
                        "ysrc": "loantranvn810:11:ed7877",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "922a50bd-918a-45ec-9402-6054ed200573",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f8e637",
                        "ysrc": "loantranvn810:11:0d78f7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f1e97b10-355e-4c8c-9abb-673c053ba3d4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:468d83",
                        "ysrc": "loantranvn810:11:cd240d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "474d556e-66d7-46e6-89bd-e7a7fbfdafbb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:392e32",
                        "ysrc": "loantranvn810:11:e3f442",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f1df9649-8125-433a-8991-8a62cff5cf57",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:69dcb6",
                        "ysrc": "loantranvn810:11:857c86",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "46248127-0aa3-417d-8821-403cdcb99dce",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:21b9aa",
                        "ysrc": "loantranvn810:11:84857d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "adc87068-4745-46ba-a053-0c5c88ce860c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e0e2fc",
                        "ysrc": "loantranvn810:11:7cdee5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "08961cdd-c783-404a-bf52-6d24bb8a239d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5cc50c",
                        "ysrc": "loantranvn810:11:dab47a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "09733ba6-aed4-444b-a1c6-bbe41ae9df47",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5ee4ec",
                        "ysrc": "loantranvn810:11:d02c36",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "92b22141-1be8-45be-87fc-23fb7559905a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cec15a",
                        "ysrc": "loantranvn810:11:f47e51",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b2473d8d-47a0-49f3-950d-12c0bb10699a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:23e4a9",
                        "ysrc": "loantranvn810:11:cef496",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1c5b12e2-8e58-41fe-b69a-73d709d79b68",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:93f754",
                        "ysrc": "loantranvn810:11:cc13ab",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c55bf0be-113d-467e-b482-6501695f3758",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f5174",
                        "ysrc": "loantranvn810:11:2591f3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e159e238-0acb-441b-8de7-e1e3176d27e4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:881767",
                        "ysrc": "loantranvn810:11:902dfb",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "837fc5da-87ff-4248-b8c6-3088b2b3b35e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:850f16",
                        "ysrc": "loantranvn810:11:f135cf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fba572f7-9045-4f62-982d-a8714b0a0214",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:45cab9",
                        "ysrc": "loantranvn810:11:c040e7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "39c39bea-604c-4ff6-aa0e-63a552c69249",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8e0d9b",
                        "ysrc": "loantranvn810:11:8666ef",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cc9b9ec4-7d8d-4974-afab-b6719d7d5fce",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:68cfae",
                        "ysrc": "loantranvn810:11:a051bb",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "31a02a67-a22b-4324-a3d4-477d0be6b752",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:01815e",
                        "ysrc": "loantranvn810:11:a0acdc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7708b035-93d5-485d-a8d6-ae28cbf26df8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:34079f",
                        "ysrc": "loantranvn810:11:dc4de5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7aee4728-9c77-4e05-895d-3fceb774f41c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cee134",
                        "ysrc": "loantranvn810:11:f255a0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "607bc5af-ce66-4c99-a218-6dafa68675ee",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0a194b",
                        "ysrc": "loantranvn810:11:a1e13d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ba112c06-003b-4ad6-bda5-2d414da4ee3e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:43aa13",
                        "ysrc": "loantranvn810:11:86abd1",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e44e75db-ffd7-425d-87df-5a5e89ac6928",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:60db29",
                        "ysrc": "loantranvn810:11:32ccdf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b7949a98-7f08-43f7-88bf-7368c0819393",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aa4299",
                        "ysrc": "loantranvn810:11:3cbf67",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b9045976-fe7c-4121-813f-275bb6a6aac5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:35b508",
                        "ysrc": "loantranvn810:11:7ad16b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "01968734-31f1-491e-a95d-f6aa3792fc31",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e4e19b",
                        "ysrc": "loantranvn810:11:1a948f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fb4883a9-0cee-4402-a041-516dbd3cd840",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c64b79",
                        "ysrc": "loantranvn810:11:f390c2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e1e927cf-32f3-4c7d-bb26-bf698b90a703",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f41c9b",
                        "ysrc": "loantranvn810:11:324d13",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7f98c29d-d326-41b3-90aa-7f6592f5fb97",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:76043c",
                        "ysrc": "loantranvn810:11:9da1d9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "366dc29c-0371-438c-9cf1-b40ea82ede9e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0cb75d",
                        "ysrc": "loantranvn810:11:01cfea",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "576bb3ba-004a-47e2-9faf-58774eb2b826",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:391691",
                        "ysrc": "loantranvn810:11:e47c1f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "73cf8c13-b647-4cb1-a01d-db2d6f77b589",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ec2bb9",
                        "ysrc": "loantranvn810:11:bc032c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d8659ece-9c36-44c0-917d-273a008e7046",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3ef98d",
                        "ysrc": "loantranvn810:11:8bd095",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c16cfac9-1557-4999-ba72-717be64eab5c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7b667f",
                        "ysrc": "loantranvn810:11:6997f6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6fc17e5d-ef82-4fbd-aa32-d9b19840a135",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8034a7",
                        "ysrc": "loantranvn810:11:da6a2a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9364eade-081e-4364-ba28-6da2d16d894c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7ae89b",
                        "ysrc": "loantranvn810:11:cd6805",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e2509f1c-f565-4784-9017-ae492eea232a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7b1837",
                        "ysrc": "loantranvn810:11:eb6714",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f6d3417e-c54f-496d-b85c-25aecd8a4285",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4ee602",
                        "ysrc": "loantranvn810:11:894619",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "549ae6ca-db74-4689-a6e6-44858ba61df2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:594dd8",
                        "ysrc": "loantranvn810:11:2bac04",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "05ca31ac-02d0-47f0-83b4-f4714cfeee4d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7f43c7",
                        "ysrc": "loantranvn810:11:6e93c6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1a9c4b2d-b48b-4df1-9e05-df1bcf8e81e9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:52b493",
                        "ysrc": "loantranvn810:11:a42d1c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c8d6e1d9-6adf-4d67-90d2-9c9f8c80a4a4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a7d968",
                        "ysrc": "loantranvn810:11:becbef",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e5a5867f-34eb-4b60-9aa2-32e4ca2c4348",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a750e6",
                        "ysrc": "loantranvn810:11:deb02c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f0d96e64-4d71-43b6-9ea5-ed9e8deca5e0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ddde13",
                        "ysrc": "loantranvn810:11:901d24",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7935af22-ae60-4dcb-8f31-1735bffeb093",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:59e98b",
                        "ysrc": "loantranvn810:11:dd8cc9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e3c8609b-1b56-4779-8bc4-69318766c4f0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ed5a40",
                        "ysrc": "loantranvn810:11:d30ebc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ccc7d26f-e931-41ca-8ea7-384ad96ab544",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:36741b",
                        "ysrc": "loantranvn810:11:25f4aa",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c5a61cdb-9270-49dd-9e75-4e04f106c394",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e68303",
                        "ysrc": "loantranvn810:11:c46b55",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1b501376-0024-49e9-ba5c-32acc8ec0816",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c44f92",
                        "ysrc": "loantranvn810:11:426b92",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "26ff9524-abe3-4677-806f-1945e6b1dc23",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d07453",
                        "ysrc": "loantranvn810:11:46bec5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7c1c15a3-2804-4a31-ad42-d16ff54ac6e3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5a055a",
                        "ysrc": "loantranvn810:11:1f673c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8007ea4f-47ed-49f2-966d-7934fa3331dc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:718abe",
                        "ysrc": "loantranvn810:11:afc454",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0e25cbeb-1f3c-46e5-a80a-a8bf75eebb90",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c49bc8",
                        "ysrc": "loantranvn810:11:f5be14",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1470db1e-70a5-428f-ac9d-0adebb651664",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3f5ec8",
                        "ysrc": "loantranvn810:11:829eb7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cc1f1c11-3c0c-4bba-9c72-ee305ba2b34f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1c25ee",
                        "ysrc": "loantranvn810:11:505401",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2e98331c-42f3-45f8-ab5d-6600e8ffe9cc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bd4807",
                        "ysrc": "loantranvn810:11:5e4ba2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4da3fea0-7ae9-461c-b2fa-17f5d9779d84",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ddcf73",
                        "ysrc": "loantranvn810:11:fc7686",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5224a1d1-7245-4ce1-8b00-a4197f39025f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:431955",
                        "ysrc": "loantranvn810:11:7be757",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7ce423ff-dca8-43de-9fc9-69db9c51bc16",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:725846",
                        "ysrc": "loantranvn810:11:157756",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "26e1987c-a79e-4584-876b-97c5b5f26f36",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ab1c4e",
                        "ysrc": "loantranvn810:11:4426b7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9e865c9b-304f-4dfa-bfed-629748325011",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9103df",
                        "ysrc": "loantranvn810:11:6d306f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "81eb1105-fb05-42d7-bd5e-c0cb993d2793",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5634c7",
                        "ysrc": "loantranvn810:11:4bc18f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "051702d4-d606-4c8d-b789-b284eb4f629f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ab1103",
                        "ysrc": "loantranvn810:11:2ee83b",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "800eeeee-0219-4084-b461-12962de660be",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2005f6",
                        "ysrc": "loantranvn810:11:932ffa",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "51811e1a-ce8f-4326-a62b-a657b2450323",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:61b7b6",
                        "ysrc": "loantranvn810:11:4795f1",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6b21cf43-257c-4899-ad54-f546a242f90d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f77f71",
                        "ysrc": "loantranvn810:11:ce88ed",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d3ed0d99-ee13-4b79-83a7-0aa266301b64",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2101ed",
                        "ysrc": "loantranvn810:11:8243ef",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1203990f-0c74-47c2-8209-13418c12a990",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f40c5",
                        "ysrc": "loantranvn810:11:aa5561",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e12a4bd7-7922-4043-8846-60755d03741b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8f9695",
                        "ysrc": "loantranvn810:11:178c53",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0e5b51a2-d2b4-46e6-a87b-b5f3ce415eda",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:150c93",
                        "ysrc": "loantranvn810:11:25afe1",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "39f5f363-8d26-4c75-a620-8f391e78bff6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5a8646",
                        "ysrc": "loantranvn810:11:b49a81",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "18eca441-7cfc-45a1-adb3-18131787d34b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:76094b",
                        "ysrc": "loantranvn810:11:ec4a74",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4134c799-cf91-4880-a5cc-a274d7021ca7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:75b302",
                        "ysrc": "loantranvn810:11:bfaefa",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9101abde-dec8-44fa-b481-239cd5dfb472",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dd84e4",
                        "ysrc": "loantranvn810:11:d3d399",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4d7adbb8-52e7-434a-aa5f-e8fd96fb72fc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:afc5bd",
                        "ysrc": "loantranvn810:11:07c727",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "04fecdf8-466d-4646-887d-6a72f6e6c8bd",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:750fb9",
                        "ysrc": "loantranvn810:11:6790d8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9e316558-d80a-4cf0-886c-e6ca21b19f61",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:405c37",
                        "ysrc": "loantranvn810:11:4a691f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ad3cc589-28ed-45e5-97b4-c6dad0cb8eef",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:94d1ef",
                        "ysrc": "loantranvn810:11:2f22f8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1c976dc8-fb10-4ff2-92a2-bbfdce7ca1bb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1d270c",
                        "ysrc": "loantranvn810:11:76ea96",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ef98bac5-ef89-4b30-8865-0e8bb2073cf4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:536ba2",
                        "ysrc": "loantranvn810:11:fe3cd4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "025c2c4c-11cc-4ca8-a9c2-626e7a34bbb9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d29581",
                        "ysrc": "loantranvn810:11:8edc6c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "20eb7489-7158-403c-bd4e-bae79f0e9a37",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bb089a",
                        "ysrc": "loantranvn810:11:8de01e",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e988d2f9-dc78-4fdb-a65a-386807eb5245",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dbe846",
                        "ysrc": "loantranvn810:11:9b0127",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "26171bf9-fe8f-452c-85ee-7d714483adde",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e03fc1",
                        "ysrc": "loantranvn810:11:b176d8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "40fa8c9f-adb4-4514-9422-b6c98f80f867",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3c46dc",
                        "ysrc": "loantranvn810:11:fddadb",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "714baadc-a842-4a6f-84a5-2e082ce9316d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5e7a12",
                        "ysrc": "loantranvn810:11:86c219",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "56a49023-70b5-457c-a4b3-a9b07bba4d38",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:258ba5",
                        "ysrc": "loantranvn810:11:52aa4f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "64622752-0631-4086-b430-36e4ba43e0fc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f670e1",
                        "ysrc": "loantranvn810:11:08d9bc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9a8dd476-211f-4219-b403-202c0d55787b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d8741b",
                        "ysrc": "loantranvn810:11:320f00",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c215a7b3-63f7-4d67-9519-02e63a03cb52",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b3212d",
                        "ysrc": "loantranvn810:11:4771fd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ac9f3718-8933-47b4-b74c-2798d61cf218",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:71963b",
                        "ysrc": "loantranvn810:11:0da671",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c7454beb-b2c0-4616-ade7-8caede0b70a0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:33d0f4",
                        "ysrc": "loantranvn810:11:41bfdf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "64f70349-10c2-48e3-9ffe-9320dcb3d2b2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:784c77",
                        "ysrc": "loantranvn810:11:88fe10",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e3c2686d-15ad-4f32-a767-480301d44d37",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4e5e42",
                        "ysrc": "loantranvn810:11:9d6576",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "930016aa-9822-47fe-a9db-f2f982c5bb0b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cdf120",
                        "ysrc": "loantranvn810:11:42f2bd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fb42279c-727e-4d93-977b-8980043555fb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3bc5ad",
                        "ysrc": "loantranvn810:11:995ffc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0c0d3c64-1c04-4b28-8701-5144eb61e7e3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:705d72",
                        "ysrc": "loantranvn810:11:c33ca6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3a14713c-68be-4699-ba18-d80c9e2d1af8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8efb47",
                        "ysrc": "loantranvn810:11:11cdb5",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "09457bf9-7e01-423a-9eeb-d31d6036a836",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:455b51",
                        "ysrc": "loantranvn810:11:44a308",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "84f21345-0549-4796-96bf-7a99bf57fc9b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cb7ff9",
                        "ysrc": "loantranvn810:11:d7a9f3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0c68b2b0-c6c5-45bf-9b72-aeeaeb1c0307",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6570af",
                        "ysrc": "loantranvn810:11:5169df",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "35c96677-0a3f-4ea2-b50c-926d50fa3938",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1a0037",
                        "ysrc": "loantranvn810:11:ca33c4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e189ee0a-a062-458d-974c-dac38ca15cc3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f81742",
                        "ysrc": "loantranvn810:11:ab879c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "45448263-0cee-4366-952f-3f51174ef591",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:557b99",
                        "ysrc": "loantranvn810:11:de2d68",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a91158a6-8c07-440e-90b6-e3d94248b82d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bb757f",
                        "ysrc": "loantranvn810:11:2ec7ee",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "67127bd1-6098-43a2-815f-01abaf27e150",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0dad1a",
                        "ysrc": "loantranvn810:11:9be7ac",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6f7e0149-4b70-4962-8f9e-ecf705588dd4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e8959b",
                        "ysrc": "loantranvn810:11:7cabdf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d5229791-0eee-414f-9791-bd616be4b86b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5769fb",
                        "ysrc": "loantranvn810:11:13dd5a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7007951c-e397-4fac-b47f-a71d6c0719ff",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bead6d",
                        "ysrc": "loantranvn810:11:8cd558",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "147999c7-8fb2-4a90-9d67-e1efc7c66471",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ff7665",
                        "ysrc": "loantranvn810:11:538251",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "91496c54-41d6-4426-aa5a-ab44a5ab5e83",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aff0b8",
                        "ysrc": "loantranvn810:11:04fad0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eab7d411-848e-456f-8764-4bb887d6e0ed",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b201fc",
                        "ysrc": "loantranvn810:11:189005",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6b1408b2-8692-46a2-b9ac-6b9ef6059134",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e9a53b",
                        "ysrc": "loantranvn810:11:ec4614",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eb9fd342-78d5-402e-a806-a71f33e5bdad",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bf3373",
                        "ysrc": "loantranvn810:11:01cf84",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "44477a4f-e9ba-4b69-bfbb-d4a486cab8c1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e06819",
                        "ysrc": "loantranvn810:11:545d7f",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f5d3f863-988f-4db9-803a-37b9246e30ee",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:43adc3",
                        "ysrc": "loantranvn810:11:e65c75",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "82e29818-f161-4105-8f9d-345a92b7ae2b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cf9d6e",
                        "ysrc": "loantranvn810:11:2c81c6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "25dcc265-240c-461d-903f-deb0ec8859dc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:72da70",
                        "ysrc": "loantranvn810:11:e357a2",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4f496326-fdeb-45a7-a66d-63db721aee30",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d7b2c9",
                        "ysrc": "loantranvn810:11:998122",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "22a3d69a-ed98-4c0b-bc3e-eaa66ebe4c8e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:11bc55",
                        "ysrc": "loantranvn810:11:23d5bf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d890538c-864b-4ee2-be4c-8bd5b5e99715",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7bdb3a",
                        "ysrc": "loantranvn810:11:2c1bc6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a80e5514-0af9-4573-9589-ce3554cc4ee6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9fa8bc",
                        "ysrc": "loantranvn810:11:3053ec",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "77fe7765-5843-43c2-b54b-1ac867e7f948",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d8dc57",
                        "ysrc": "loantranvn810:11:909c20",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3d0864ff-e46f-42f9-9f47-27abca4c14b7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7017f5",
                        "ysrc": "loantranvn810:11:b3525a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d1a556a8-4e21-41ef-9e71-fe98fa859c9c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:071d6f",
                        "ysrc": "loantranvn810:11:325537",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "df54ac1a-5fdb-488e-87a9-2b19851ffdbd",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9414d4",
                        "ysrc": "loantranvn810:11:2d79ea",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e7261b62-4e3e-467d-91b6-237796e543b8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:73ff52",
                        "ysrc": "loantranvn810:11:1359e0",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3cb93679-8546-4ee0-8f15-4533d8e5d19e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5aecc8",
                        "ysrc": "loantranvn810:11:9f05bf",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f9b4fb03-4b38-48fc-9206-c89d819cf84c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:caaa89",
                        "ysrc": "loantranvn810:11:c18485",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9a7e4042-434f-46e4-805c-0354ec4fe1ff",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c165fb",
                        "ysrc": "loantranvn810:11:058337",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9fec58e6-d567-49b9-bb21-9c3461f88a79",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:130e10",
                        "ysrc": "loantranvn810:11:0dcbeb",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "52f8c239-28f2-429c-b6de-a4cd1c12c865",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:060dc5",
                        "ysrc": "loantranvn810:11:e98d5c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e2c23e44-5e2b-45cb-94c5-49229a6774b1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:99b1c7",
                        "ysrc": "loantranvn810:11:405cf8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "62b12761-21ef-4488-8085-c97141e78451",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:032ecc",
                        "ysrc": "loantranvn810:11:100fd3",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ad2f2563-b460-4b71-bcfc-b545b3ee004f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:015d23",
                        "ysrc": "loantranvn810:11:25ec00",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c753a498-7025-4c97-aa52-e50a91b00a84",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9e4056",
                        "ysrc": "loantranvn810:11:84fb48",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bf9e0e1d-c92a-47d3-ad73-83d3e2faaeb3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c8b61f",
                        "ysrc": "loantranvn810:11:65960c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7eb1aeed-8411-4f17-9f97-2a6f436f8cc0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6c4564",
                        "ysrc": "loantranvn810:11:cdf2a6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b60d7eb-fa08-422f-9ba4-88c13eaba433",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7555a6",
                        "ysrc": "loantranvn810:11:8ead55",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a275bb3e-0571-4195-934e-51de6dbd4f4f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e0da63",
                        "ysrc": "loantranvn810:11:d4cefa",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a68a1c82-c84f-4ce7-9488-e18370f02b9f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:62536f",
                        "ysrc": "loantranvn810:11:174ad8",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "518e4a57-20ea-4022-b6e7-3691b8534be1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:61db7f",
                        "ysrc": "loantranvn810:11:cd8bed",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f2679507-54dc-4fde-879e-4d6ac0a95e02",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:85a0ef",
                        "ysrc": "loantranvn810:11:b6deb7",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "463827f7-48bc-45c9-95b0-f6405322deea",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:df27a3",
                        "ysrc": "loantranvn810:11:f6546d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "19010ae4-be97-493c-9284-126234a24921",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a90886",
                        "ysrc": "loantranvn810:11:3ed0bc",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a32b0774-ec19-4cb2-a5f6-c5c9f6dea16e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bd4a29",
                        "ysrc": "loantranvn810:11:c690c6",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "49ada8c3-d482-424b-8205-61c6fff30b20",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6822ec",
                        "ysrc": "loantranvn810:11:477c8d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ff0762c5-cc63-41b1-9824-040f8b71a423",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9f5ccc",
                        "ysrc": "loantranvn810:11:e5a899",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b6f313b5-4894-48eb-9d4c-5f6f53fede29",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:391f75",
                        "ysrc": "loantranvn810:11:29937a",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e0d4c489-5ad6-42d5-b423-3a21c68be5b3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0b4854",
                        "ysrc": "loantranvn810:11:f097a9",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "937db986-75e4-49ec-97fb-9d3cf4a86ea8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:433ddb",
                        "ysrc": "loantranvn810:11:e64ddd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5800953a-abb3-48ed-a802-fbba6c05142b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2b9961",
                        "ysrc": "loantranvn810:11:30a510",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(0,116,217)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4365525c-0d11-4b69-b0c6-5f4f08fa97f1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9491ef",
                        "ysrc": "loantranvn810:11:b189ae",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "accf878b-f24e-4f48-bf39-4b5e8259e7d0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ccf484",
                        "ysrc": "loantranvn810:11:e49a4b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4d58ad02-f4a4-47f4-87b8-976b3b4436ea",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9b58a9",
                        "ysrc": "loantranvn810:11:0b444a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1b822db4-559a-4833-8d6e-69e22e2f4640",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8b2332",
                        "ysrc": "loantranvn810:11:f84804",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "96a3916c-4053-4b0f-a675-eb01cb0bbae7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:53e9eb",
                        "ysrc": "loantranvn810:11:a8ef72",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "744d5b2c-d3cc-475f-88b2-8281095aea75",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1646f1",
                        "ysrc": "loantranvn810:11:f042c4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9df1ffcd-0d08-4cf8-bf46-1640bc525a53",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c42117",
                        "ysrc": "loantranvn810:11:a7cbed",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2745e79e-2170-4730-bedb-8d427e59b213",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4f7d2a",
                        "ysrc": "loantranvn810:11:6137ec",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "521ee475-95d6-4f35-a75c-150d4df515bc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:118c4d",
                        "ysrc": "loantranvn810:11:879932",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "454feb97-b2b8-480a-8d70-c81034801b04",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5eb6a9",
                        "ysrc": "loantranvn810:11:877ccb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5d2dc998-3175-4fde-ad3e-44d603dca55e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4af539",
                        "ysrc": "loantranvn810:11:cc6c4c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e04f894b-7ca6-4e63-92c2-9209b830a812",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3160c6",
                        "ysrc": "loantranvn810:11:786eaa",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8263af0f-c130-4ca3-8644-b37d6eaf1c6c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9f44ca",
                        "ysrc": "loantranvn810:11:15edcc",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2090c2fa-fb00-4ae9-9c62-ea5e4f1d28a6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c696fe",
                        "ysrc": "loantranvn810:11:a2160d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6de0f02e-7e2a-4f79-b7e5-640ead9e99e9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:341ce8",
                        "ysrc": "loantranvn810:11:473b9c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "21c08e3a-8d3d-4ae5-848b-2126bb484466",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ef3b1e",
                        "ysrc": "loantranvn810:11:03c296",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "22d9f021-3209-4808-b6f0-bf4c62f3a845",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:62b5e3",
                        "ysrc": "loantranvn810:11:c7e2aa",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fd26a9d2-3019-4cce-868f-1aff5dec9d61",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b124f8",
                        "ysrc": "loantranvn810:11:4a4be0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "44610b3b-83ef-4239-b466-913cb9cb7e89",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1d5555",
                        "ysrc": "loantranvn810:11:733d0d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e96eec18-a27f-4959-9bb2-fcccbbaeb2b2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:45a2dc",
                        "ysrc": "loantranvn810:11:5fc41f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4b59bbc7-7292-4857-b998-69c76d56519b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:23fc92",
                        "ysrc": "loantranvn810:11:7de52d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e3d95969-7ae7-40dd-90e3-5aaffce366e4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f472f7",
                        "ysrc": "loantranvn810:11:b75681",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "547f2e72-4b3c-4b73-8192-a8d7165d3a91",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ea2a14",
                        "ysrc": "loantranvn810:11:018642",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f5619608-d85b-4252-a999-67b2b726e300",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:afba52",
                        "ysrc": "loantranvn810:11:ade059",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6c0421be-1d29-4b61-aa65-d0da68630076",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4dde6e",
                        "ysrc": "loantranvn810:11:a2a9ba",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4702d6b5-dd87-490e-9676-1c3ffefa0bc5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:724538",
                        "ysrc": "loantranvn810:11:a43ee6",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "95aa8e2a-7be7-4a2c-98b8-071a2e64975c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0de817",
                        "ysrc": "loantranvn810:11:c8b6f2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a748b0cd-02bc-4223-a0f2-11210847c890",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cfa5c7",
                        "ysrc": "loantranvn810:11:7e8012",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bef66be3-6dd0-449d-a441-145310417248",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:52a8d0",
                        "ysrc": "loantranvn810:11:05a65c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "60a35f4b-cf86-41fc-afc6-cbfa89174257",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4aad13",
                        "ysrc": "loantranvn810:11:177256",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b05dce1-5b80-4b8f-a346-900b53400f50",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8d5f49",
                        "ysrc": "loantranvn810:11:3dd563",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "59383889-1ea2-4bda-b8ef-3f7209b425a1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:89d74c",
                        "ysrc": "loantranvn810:11:6007c0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7ce0c2b8-d9ec-4f8a-bf58-9cb251005691",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:66bbba",
                        "ysrc": "loantranvn810:11:d407c6",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6f150b8a-1cb9-4021-a87a-3cfa6bbf064c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:44add7",
                        "ysrc": "loantranvn810:11:9f1828",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e9a8c232-6460-4039-9a90-ddde79556fae",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:751bc3",
                        "ysrc": "loantranvn810:11:61d9d1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eb1deeb9-266c-4d31-94a4-b7bd5a70411c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:39c00e",
                        "ysrc": "loantranvn810:11:6498a5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "efd1549b-5129-4012-b932-05de4dcb5b6d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3149e1",
                        "ysrc": "loantranvn810:11:557a8c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ccc3fc8f-0523-4347-8c65-88e84d70a95c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3c61f0",
                        "ysrc": "loantranvn810:11:3ecf92",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c24f10dd-2d7b-4c82-9728-ac422fbea312",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e32986",
                        "ysrc": "loantranvn810:11:83483d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cb4fdee3-2874-48af-af8d-6a7c37bc1665",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:23918d",
                        "ysrc": "loantranvn810:11:66287b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "22ec7b33-65cc-482a-a42d-6a677ec33505",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3f3cf8",
                        "ysrc": "loantranvn810:11:173e15",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4c8bdb91-8008-48aa-aa3d-35d06a729fcd",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:85593c",
                        "ysrc": "loantranvn810:11:56e3f3",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "166aeeb1-6507-4a04-a9c7-5d3c90a3ad5e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7cf4bb",
                        "ysrc": "loantranvn810:11:ef6413",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "016a440a-1934-4b7c-8b9c-083b8c6527a5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a2c0f7",
                        "ysrc": "loantranvn810:11:d16963",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4f392156-7dbd-4731-b708-aecffeeba34d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b4b4a3",
                        "ysrc": "loantranvn810:11:250219",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2a47630d-f54b-48e9-bd37-44ccbc92cb93",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8ad259",
                        "ysrc": "loantranvn810:11:8e89df",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f0f31247-3644-43e0-907f-91c6bb9bea0a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4103e6",
                        "ysrc": "loantranvn810:11:506ca4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b1b6cefe-0043-460b-8613-95e83f62289e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:32900a",
                        "ysrc": "loantranvn810:11:bb3421",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c271950b-c304-43dd-a629-5f7bf1a54c39",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:deb261",
                        "ysrc": "loantranvn810:11:308441",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ec380148-792f-4dac-a764-1015a72d19e8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0a9231",
                        "ysrc": "loantranvn810:11:396394",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4f6e7bdb-d970-44c0-9303-8b8c992da269",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5d885b",
                        "ysrc": "loantranvn810:11:e67547",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "35e945a4-64bb-4787-b221-b5ac208554bb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:95d8f6",
                        "ysrc": "loantranvn810:11:b9fb08",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c0776b8b-1d63-4927-929a-b34030259cfe",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a48861",
                        "ysrc": "loantranvn810:11:deb0e3",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "da551990-ad1c-4cc4-8919-09507c73d314",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2b0b34",
                        "ysrc": "loantranvn810:11:84923a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e754e80b-4b05-42bb-841c-199e2a142bb3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:31989e",
                        "ysrc": "loantranvn810:11:11ed79",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1c2460c9-f24a-493d-a885-01d48640ca23",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e65c6d",
                        "ysrc": "loantranvn810:11:cb7753",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1fefa3da-9ff8-4a7d-bee3-bfb46809d45e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6e35ee",
                        "ysrc": "loantranvn810:11:6bcfe2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d8f85429-35f8-47d1-a0a0-4e72708e08e9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:806ac3",
                        "ysrc": "loantranvn810:11:d99174",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b2524a84-f120-46d5-bd0c-c8567ec0229a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d506be",
                        "ysrc": "loantranvn810:11:3c0245",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a9790489-3afa-4b9a-826d-4df9c81c924b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:70ab02",
                        "ysrc": "loantranvn810:11:a15750",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ea1dc6ed-3282-480a-adc0-a09738e20619",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3854f1",
                        "ysrc": "loantranvn810:11:af0ce0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5f603e74-a14c-42e2-9435-b38bb07b4089",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:98eaab",
                        "ysrc": "loantranvn810:11:13fe60",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5cd8558c-031f-4fda-b7bd-ea44a12c9979",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e3d776",
                        "ysrc": "loantranvn810:11:255b2e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4ec081b5-3ae7-4370-a1a1-9681b418ba5c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e6b5d5",
                        "ysrc": "loantranvn810:11:6faf53",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c1232791-2942-43b5-ba50-ec92a4b6d3da",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b8f01b",
                        "ysrc": "loantranvn810:11:87328e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e5358db7-b89e-480c-b4d2-b21f94c621c6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:572b71",
                        "ysrc": "loantranvn810:11:7fbec9",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f9b7ec43-1994-46fc-b2b1-d9576efe9566",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e9ff25",
                        "ysrc": "loantranvn810:11:8f7fa1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b7c6109b-5c00-4e2d-84d5-83f590edc6f5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:db6ed3",
                        "ysrc": "loantranvn810:11:c5edf9",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bbd00c90-8942-41d9-8488-a66173f73041",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7105ed",
                        "ysrc": "loantranvn810:11:47217d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e82350f2-b2ed-4595-bdb8-0addef94cf0c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:638e2c",
                        "ysrc": "loantranvn810:11:c380ab",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e888beb0-b263-492d-9f48-aae8add9c58b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3ed6b9",
                        "ysrc": "loantranvn810:11:f1eb54",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b71fabab-dd87-444a-895f-f12a73e81822",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:841ac6",
                        "ysrc": "loantranvn810:11:7bdf5e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "74970236-593c-41c5-87b2-8e5ebb2184f5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:789ac4",
                        "ysrc": "loantranvn810:11:c15e8b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "43498d7c-caf3-42f0-bd99-eabfe0aa8be0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:48b1f0",
                        "ysrc": "loantranvn810:11:1dccfd",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "83996e36-5be0-4435-bd1d-144b06a85935",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b3e970",
                        "ysrc": "loantranvn810:11:25c787",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "53eca446-2068-4b30-9520-25a9725888a5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b2aaff",
                        "ysrc": "loantranvn810:11:724587",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2bb37f8b-e534-4acb-8f9a-93d7e0cb4fdf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2de4e0",
                        "ysrc": "loantranvn810:11:4d01e2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0558dd90-d71b-497e-b515-68f8806f0a33",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:680bde",
                        "ysrc": "loantranvn810:11:bb9909",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "645a69f5-9a7e-4da9-87e3-58665b7d1eda",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:856ab3",
                        "ysrc": "loantranvn810:11:252c5b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d0512845-1c04-41bd-9ca2-62059b4217a0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:63ab62",
                        "ysrc": "loantranvn810:11:dc46ab",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5e073864-020d-45fb-bd87-aee53f8b75b5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a91dde",
                        "ysrc": "loantranvn810:11:159698",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3b27cf9a-d50f-4568-a4ad-3ce21e6f3245",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:30fe22",
                        "ysrc": "loantranvn810:11:fd98bb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "21913ffa-fbc3-4960-9f84-a45ed122aae6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9e355c",
                        "ysrc": "loantranvn810:11:cc1f64",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3dd2b4bb-07e6-4573-ba5e-d8e09f1caea5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c8c35e",
                        "ysrc": "loantranvn810:11:442e39",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fbe87d95-647a-4957-a2b0-0e5538ad70bb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:43e242",
                        "ysrc": "loantranvn810:11:51e401",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e2e61e56-86a5-4314-b7ae-4012f2340c43",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ea5a6c",
                        "ysrc": "loantranvn810:11:af18c2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e0f9e757-5649-46b9-b204-c19fe0663450",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d07636",
                        "ysrc": "loantranvn810:11:f5e454",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "23d61747-2942-4c58-8d38-f99c8c023d8e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:91d245",
                        "ysrc": "loantranvn810:11:578157",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1abade2e-0fd5-4dfe-9e1d-61e7d4792392",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cd14c8",
                        "ysrc": "loantranvn810:11:68827d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fc0b8d54-4c07-4dc8-b544-f25b336b4218",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d8a909",
                        "ysrc": "loantranvn810:11:3e1848",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "178c35c2-0c6b-4e9a-9755-64e129ce98b4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:72376b",
                        "ysrc": "loantranvn810:11:606760",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7399fedc-698d-4d91-81ca-8f629b25c738",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:39feb3",
                        "ysrc": "loantranvn810:11:83963e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5965d8a1-33c1-4196-8e88-b0528140c5f2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:33577a",
                        "ysrc": "loantranvn810:11:2b3bd7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0be6acae-ccde-49a1-89d1-9227e0428d09",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7eca59",
                        "ysrc": "loantranvn810:11:c70718",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7a378af3-9dbc-4657-ae31-5f282b8fb13e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:08cfb2",
                        "ysrc": "loantranvn810:11:6c32e2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "633dccb4-2e37-4f7f-907f-0e8e97c813e8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:87461d",
                        "ysrc": "loantranvn810:11:9fe3c8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1bf2d23f-66f6-4f16-87f8-a4f7cf4c3104",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4ea824",
                        "ysrc": "loantranvn810:11:59bdc1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2ea27516-1828-4cef-8a97-042d96d8ba08",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:fc4ab8",
                        "ysrc": "loantranvn810:11:c73406",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "93ea04ea-e036-4e2f-86af-52a9a93bbf5c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3eeb4d",
                        "ysrc": "loantranvn810:11:3eeb81",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "af1f2391-6d75-427b-94c3-1f0b37594a34",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:66958c",
                        "ysrc": "loantranvn810:11:15a147",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "573afd20-7e07-4b78-99c0-9b0c0ad68ecf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:57d491",
                        "ysrc": "loantranvn810:11:14da73",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3cbf49a9-0748-4a5a-bf4e-87150821a5b0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:53a232",
                        "ysrc": "loantranvn810:11:a7b1c2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b8458ce8-3590-4847-8f37-3798c71b8319",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:496f23",
                        "ysrc": "loantranvn810:11:63be65",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3f1f4c3c-9dfb-406c-b71f-fef8e35f24f1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:07c338",
                        "ysrc": "loantranvn810:11:accce9",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e5f1981f-545c-4509-ae47-358df9427221",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4c9ad9",
                        "ysrc": "loantranvn810:11:227fb6",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6b6e6ea4-35d4-496c-83e2-8beaae961849",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:407878",
                        "ysrc": "loantranvn810:11:a58294",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b1237927-80ae-420e-a9fc-93808552cc04",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5efaae",
                        "ysrc": "loantranvn810:11:e2b131",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c88a2cfd-b857-461b-acf2-d8a8a337f194",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4f801f",
                        "ysrc": "loantranvn810:11:1eff0c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b2680493-2e22-4e53-87fb-d9cbb73b59c9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:574c97",
                        "ysrc": "loantranvn810:11:649ec5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c0f8d186-fc76-483f-87dd-348c2d2ba3e9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7e0e05",
                        "ysrc": "loantranvn810:11:2c87f3",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "55fbdfb5-46e3-44b0-8859-21307b4da39d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c3446f",
                        "ysrc": "loantranvn810:11:f8ad12",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "af1ef684-9796-4fe6-9847-e4cd2515dfb9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2c6f21",
                        "ysrc": "loantranvn810:11:6135fc",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7d05b6a7-d873-48dc-b407-1bfbb61c4ee1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:da518d",
                        "ysrc": "loantranvn810:11:495038",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "dc80857e-fc43-4304-82e1-d34cbe858ef6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:52bc23",
                        "ysrc": "loantranvn810:11:478610",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3bebb481-7f7f-44ea-9684-9df0916af7d0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f3ffc1",
                        "ysrc": "loantranvn810:11:fb1f21",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2d3e50ac-623b-4bfc-8344-0afbadab5dd8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ca2d81",
                        "ysrc": "loantranvn810:11:2fe21e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1068320c-bbe9-48ee-ba50-dcf08c54bf2d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dfa024",
                        "ysrc": "loantranvn810:11:c9ba30",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "228c0cb0-94ab-466e-b41a-fa784b138699",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c25d3d",
                        "ysrc": "loantranvn810:11:304b81",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "05507bff-c9dd-4be6-a2ab-03227ba7f58e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ef4feb",
                        "ysrc": "loantranvn810:11:7be2e1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "dc677421-34cc-41f9-87bf-a1d4f1129df7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:090c62",
                        "ysrc": "loantranvn810:11:8a3c30",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "15646060-7227-4de4-bece-28709306bbf2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:59acf5",
                        "ysrc": "loantranvn810:11:6d17ce",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "466b19ca-3075-4d33-b6ad-934cbf521806",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:104b19",
                        "ysrc": "loantranvn810:11:4886d8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "05facfdb-1d58-4765-80cd-b86ee4de1ce7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e88270",
                        "ysrc": "loantranvn810:11:7d1656",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ef984bbf-21dd-4f2d-816b-83d4fa9166e6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e463f5",
                        "ysrc": "loantranvn810:11:4c8c24",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fef2ac05-00ba-4566-beff-0b39be25201a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4129c5",
                        "ysrc": "loantranvn810:11:899e22",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7511dbed-4bf7-4376-bb86-de0306b6b049",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:632985",
                        "ysrc": "loantranvn810:11:53dc24",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fddc911f-56a8-4c37-98f5-351303b964d2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:74fb1d",
                        "ysrc": "loantranvn810:11:57f6bd",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e0621a25-5561-44b0-8129-df2dd7e1613f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:115e80",
                        "ysrc": "loantranvn810:11:2fe28f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c2c0cd3d-a732-4e71-af5f-7b9c1712f315",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:db4b44",
                        "ysrc": "loantranvn810:11:a044b0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "85e47ecb-4dc9-46c8-8c2a-05c9457594cf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2e96b1",
                        "ysrc": "loantranvn810:11:3378a5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "43385117-f2fd-4466-87dd-0506400d389a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0c4ee5",
                        "ysrc": "loantranvn810:11:276079",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1dd59a21-6da4-4d9e-8355-43fd98a25f79",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:42c77d",
                        "ysrc": "loantranvn810:11:2f367a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c464876d-cd5c-4f71-adea-bba3ca6402d2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3ceb72",
                        "ysrc": "loantranvn810:11:d597e1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "37d5b70d-d327-4046-977e-e17fbca2531b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f049b",
                        "ysrc": "loantranvn810:11:3e624e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b12e142e-132d-41ab-b791-58e9be859b92",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e6475c",
                        "ysrc": "loantranvn810:11:155d63",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "93b8075b-5262-4366-af2b-ab28f9482afb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d773a7",
                        "ysrc": "loantranvn810:11:bc1d25",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4de97890-1f85-4b4e-a92e-726e86a5fa80",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:592669",
                        "ysrc": "loantranvn810:11:2ede06",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9f157ebb-d959-4071-b883-1ce1c7faaa3a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3b3880",
                        "ysrc": "loantranvn810:11:55b8ce",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "56412677-126a-4e18-946a-c517b76f1f25",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7d2d95",
                        "ysrc": "loantranvn810:11:e80173",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d55ec991-87cd-44dc-a6d5-b65fc1e84bd7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e6e01a",
                        "ysrc": "loantranvn810:11:c99899",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "aba1ab2f-7a4a-41ff-afe0-5d15c559d645",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6e92fc",
                        "ysrc": "loantranvn810:11:464e8a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1fbb19a7-b0d9-4333-a792-0d62fe85de63",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0d0968",
                        "ysrc": "loantranvn810:11:d5a489",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a61e55d8-0632-4f0f-a21b-eea9c2d85a66",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c8e7a8",
                        "ysrc": "loantranvn810:11:5761ce",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "afd3129a-7964-4df4-be66-2171773a99e1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d34573",
                        "ysrc": "loantranvn810:11:11481f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c20b191a-9266-4681-8353-c5700f0b428b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:44549a",
                        "ysrc": "loantranvn810:11:02f5f1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c8966fd6-a75f-4cb3-a65c-671af0093435",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d4ed0c",
                        "ysrc": "loantranvn810:11:414be0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "44a6a151-b145-470b-8793-7f114b24f321",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8bd719",
                        "ysrc": "loantranvn810:11:16478e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ac18054c-4140-4493-8f77-4a351ded0b22",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6ee3b2",
                        "ysrc": "loantranvn810:11:b588a8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "542a4c8d-ebab-4b47-bcc8-dfa57bf5a110",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:32b691",
                        "ysrc": "loantranvn810:11:4139ac",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7b2ff68d-9826-415a-a7a5-48caa5d50b65",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:406d21",
                        "ysrc": "loantranvn810:11:4dffad",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e416e918-2cbb-4189-a616-739fec7986bc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:070986",
                        "ysrc": "loantranvn810:11:0db4ec",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6c0c9353-6a21-4481-b413-54849f63a1fc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0a4757",
                        "ysrc": "loantranvn810:11:244990",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3a6162b5-36ef-455c-b56e-cf891d65d550",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5ada61",
                        "ysrc": "loantranvn810:11:73fdaa",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7297ac07-fedc-49ca-bc89-83912c1cb47c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9da55d",
                        "ysrc": "loantranvn810:11:960e0e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "724640fc-3c86-4447-ab9d-77ad366b2181",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9b9269",
                        "ysrc": "loantranvn810:11:284c7d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cbeec562-634e-4961-89c9-c0c42a30ec43",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:510180",
                        "ysrc": "loantranvn810:11:c44000",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ae6edff9-26a2-499e-8201-9b8afb593766",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ede334",
                        "ysrc": "loantranvn810:11:2a95e4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3e940fae-da7e-4a17-b984-42f776125a4d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:cc95b3",
                        "ysrc": "loantranvn810:11:c0f168",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ae80c263-67e3-4f05-bbb1-8004fe34c4e8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1562d4",
                        "ysrc": "loantranvn810:11:34ad8f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "71de47ea-5b92-4c1c-bbd1-e5731c117ec5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d9d95e",
                        "ysrc": "loantranvn810:11:c75571",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8022ce9f-4157-4d25-acff-20bd5922ff01",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:697262",
                        "ysrc": "loantranvn810:11:d6379f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1941b864-e134-40c2-9f50-689209e47735",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2de951",
                        "ysrc": "loantranvn810:11:206c6d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c764c02d-940b-4d41-b51f-63d3b310f15b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c1314c",
                        "ysrc": "loantranvn810:11:d57532",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "05a21256-7149-43c5-a826-5ceb77833d02",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:859186",
                        "ysrc": "loantranvn810:11:fdaefa",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e71dfc0b-d861-4dbb-850e-6ecd49f1bfe9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:24ea90",
                        "ysrc": "loantranvn810:11:a24f68",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "82a3f008-28ba-428a-bc99-71cf039a661c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b6b74d",
                        "ysrc": "loantranvn810:11:b4db74",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "59b6e5e6-bc5d-407e-9320-556360a4a7e2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:808a5c",
                        "ysrc": "loantranvn810:11:0f95f5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fe323670-f7e3-4f6b-a16b-3294c2f08aaa",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a4d055",
                        "ysrc": "loantranvn810:11:fe953a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7201a4e6-33b5-404e-87cf-1a57370de766",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:81247f",
                        "ysrc": "loantranvn810:11:f22e51",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a82f55f2-3246-4e24-aa62-97793224a8db",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f5690e",
                        "ysrc": "loantranvn810:11:5030bb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "34947843-4ab7-41a8-a2aa-059f7bfaa23f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2b7b4b",
                        "ysrc": "loantranvn810:11:38396e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "140c6a69-c6cb-48bb-8b4f-e6dd380edd6f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:da997e",
                        "ysrc": "loantranvn810:11:620fd2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b6894df3-3ae8-413d-bf49-f4058e13a8b1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4d7349",
                        "ysrc": "loantranvn810:11:eb4359",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6b2d579e-0a96-4363-8ac6-7f56ce0ec17b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7dc4c7",
                        "ysrc": "loantranvn810:11:5234ab",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "65723387-fb60-4413-b6de-77bc89b96314",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d08819",
                        "ysrc": "loantranvn810:11:0b0f12",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d7c7dfb8-6ceb-4477-87c5-583ced87a3f4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4c3c59",
                        "ysrc": "loantranvn810:11:fa3d6a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8205e836-4baa-4e9a-b9cd-37f979fa831f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aabddc",
                        "ysrc": "loantranvn810:11:80765b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e2009aca-7230-48f6-a0e9-1d605b0a7ee5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:dcdb86",
                        "ysrc": "loantranvn810:11:5750eb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5585c4d9-41cd-4b3c-a625-58791ab1f5b3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:89fe20",
                        "ysrc": "loantranvn810:11:9d9d42",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5d901273-c1a1-4c5f-a003-94bbc354d73a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3fe00a",
                        "ysrc": "loantranvn810:11:58c927",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f1242fe5-eda3-4a22-a672-14fa99880d4a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5ab7d3",
                        "ysrc": "loantranvn810:11:c6ec59",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f750ec6c-4186-4125-9352-4cfe695ad078",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e0822a",
                        "ysrc": "loantranvn810:11:58a180",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5c9598a3-3d6b-4132-840d-4b18324fd04e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f349b9",
                        "ysrc": "loantranvn810:11:320c10",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c015d97a-53ab-47cd-acaa-9cad348ed86b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e12d53",
                        "ysrc": "loantranvn810:11:74400d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9b091463-d3cb-4a9e-9fb4-2bd45a1d8b42",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:836033",
                        "ysrc": "loantranvn810:11:1dc7ad",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3cbae9d6-f7e3-40c4-9a99-a1f80098f242",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:31cc1f",
                        "ysrc": "loantranvn810:11:ffba2f",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bea9662c-66c4-4de7-bb3e-51796420f618",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:956073",
                        "ysrc": "loantranvn810:11:472e47",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "78e5dfe0-0ef4-4233-9eb3-92b7c3fb0c64",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8ba5a4",
                        "ysrc": "loantranvn810:11:629b85",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "dafd505f-eabf-42ad-a7d8-b83c09d7ba5d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e45b9e",
                        "ysrc": "loantranvn810:11:4f2163",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8020e952-8e1f-402d-ba26-8ffc045286a4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aaaa60",
                        "ysrc": "loantranvn810:11:298ff2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eae15fd8-331f-4987-829b-ffefd1080a1d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a387ba",
                        "ysrc": "loantranvn810:11:d15046",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cc5a3d5d-f306-46e8-b3cd-bafa25ee9363",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ecd763",
                        "ysrc": "loantranvn810:11:7e6e14",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "35f17603-597c-4e76-a971-8a94176bac76",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:15398e",
                        "ysrc": "loantranvn810:11:bbd7f2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7a4d0f66-2da9-48c5-8c99-baa33dc4a679",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:24c817",
                        "ysrc": "loantranvn810:11:a93404",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "047fbaf9-5faa-4536-8741-a8c15c7fe65b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:24f32d",
                        "ysrc": "loantranvn810:11:9b0889",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "49cdde09-c3ea-4324-9114-3d14b9740652",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:51e689",
                        "ysrc": "loantranvn810:11:51b857",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "da218c13-b9a4-41f5-ab79-bd901efe695d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:80fcfb",
                        "ysrc": "loantranvn810:11:dd788e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7ed885ce-8128-43dc-abc7-078d04c2e4f6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:39b7ee",
                        "ysrc": "loantranvn810:11:af54b8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "67e47c89-c1e9-4598-a81d-711a6c5495c1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7fc200",
                        "ysrc": "loantranvn810:11:6dce25",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "12da7bef-f0a3-45d9-b957-40cd6e6411e4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:707578",
                        "ysrc": "loantranvn810:11:e91d24",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d82311b0-1f67-4485-ae3b-2080302e7b0f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d9bff7",
                        "ysrc": "loantranvn810:11:b3a4c1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f3e56a68-2b14-4573-8192-442263b0e898",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:878c3a",
                        "ysrc": "loantranvn810:11:f55d73",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "faacc38b-f420-4111-946c-001ca2663b1e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:95435b",
                        "ysrc": "loantranvn810:11:ae6bc1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e24035e0-eca2-430a-a828-1c330dbbef35",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:594836",
                        "ysrc": "loantranvn810:11:03c044",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fdf20d8e-ed37-4ba9-88b5-21fbf1d36933",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f9c777",
                        "ysrc": "loantranvn810:11:207449",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3d8de04a-6464-4d77-8b46-4d247d17ab07",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:86a607",
                        "ysrc": "loantranvn810:11:351b83",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4d765ee2-2ef8-4f65-a299-593d6fd639a0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:49db4e",
                        "ysrc": "loantranvn810:11:6073da",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "04cf5ed6-c7b2-453a-9c08-37bdb927a86e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b3adab",
                        "ysrc": "loantranvn810:11:09d7c2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ba206db1-8e06-497c-96e5-aa5790a727d3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ba2e5c",
                        "ysrc": "loantranvn810:11:318ac2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d9ca16e5-46a6-47f2-a8a0-99fe5c2a732b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a100ec",
                        "ysrc": "loantranvn810:11:d2e7c4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b8e687c0-58b2-40dd-a366-cc7161957a02",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a81587",
                        "ysrc": "loantranvn810:11:d15be4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "52b0cc87-f861-4da7-942a-93ade65dc5bf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:510c2b",
                        "ysrc": "loantranvn810:11:df6043",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b48137bf-262b-4d7c-ae3c-14651338f75b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f2924",
                        "ysrc": "loantranvn810:11:582d5e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7697b576-2695-4a95-aeaa-493b2629047b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b60ea9",
                        "ysrc": "loantranvn810:11:4a5f73",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a7f0717b-7c7f-4706-b7f3-d24b47ab2cf9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2ccbea",
                        "ysrc": "loantranvn810:11:865520",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cb1d3faf-b109-4d92-b38a-fc17c6c02d7b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:274577",
                        "ysrc": "loantranvn810:11:1fafe2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4abf5983-c21c-4f16-96d6-af7e5c0d4032",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:51dee6",
                        "ysrc": "loantranvn810:11:8fb521",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "29f8ec61-8f67-4083-b3ca-1aa6e752ed65",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6b4f59",
                        "ysrc": "loantranvn810:11:70fa49",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6415bf2c-7b94-4775-b57e-eb0eb9d5aee0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7dd492",
                        "ysrc": "loantranvn810:11:cf79ed",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "46428d8b-25c3-4eba-84ec-99769cc8d69a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:413237",
                        "ysrc": "loantranvn810:11:8404ab",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e1429c65-cef7-4dee-a6e4-39a361a61876",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0ae268",
                        "ysrc": "loantranvn810:11:24167c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7720f026-b717-47f4-833c-b2b416d0ef76",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ada7f4",
                        "ysrc": "loantranvn810:11:459a9c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7ae1f5ff-0496-4547-8330-82195ebdc213",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3086f6",
                        "ysrc": "loantranvn810:11:607c6b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ad32da6a-077e-42a9-a70c-d8881c8c835d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:97269a",
                        "ysrc": "loantranvn810:11:a978ea",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d70c9fc3-1266-44ed-8b5a-7d3b95052de2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d26e9c",
                        "ysrc": "loantranvn810:11:2e9394",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2232b8ce-99c8-4767-abae-88f5cdef5d5c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:12f26d",
                        "ysrc": "loantranvn810:11:bd59a7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "803eefab-98cb-4439-90ee-fe45e058b15c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a690c2",
                        "ysrc": "loantranvn810:11:e1a0b2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "598e5014-c5f9-4efc-a9bc-7cd84ae31202",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:172162",
                        "ysrc": "loantranvn810:11:0c2a82",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "155c5c5e-63fe-44a0-a1d4-feb5a43a897f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a88856",
                        "ysrc": "loantranvn810:11:e1b124",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3f5accd7-9d82-4b8c-bdbc-6fef7529b853",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2837c4",
                        "ysrc": "loantranvn810:11:a316d0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4838c8aa-16da-410c-8030-8441989cd9c6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c11a20",
                        "ysrc": "loantranvn810:11:166b81",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b5ff3bf8-b79e-4816-8cc5-aaaa48c05e17",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7032b0",
                        "ysrc": "loantranvn810:11:8ba27d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1f083787-3f3a-47b8-aa05-10173d0e85d3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e007b5",
                        "ysrc": "loantranvn810:11:83134e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "55248d39-8f84-446f-8fe3-44b897c44da0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f7eab",
                        "ysrc": "loantranvn810:11:d3d865",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "576f3c23-d21b-405e-90ae-ccdffdacc0e3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:504de1",
                        "ysrc": "loantranvn810:11:0a305b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b0ef2f09-a56c-4738-9846-d40db7d46922",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:338b55",
                        "ysrc": "loantranvn810:11:fef122",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "080a1582-5c9f-44b4-853a-cea9687dd477",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:73048d",
                        "ysrc": "loantranvn810:11:b297e1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "baaefd01-70a6-44cd-8a7a-7412fbd2416e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:47f1e7",
                        "ysrc": "loantranvn810:11:841528",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1466a9a3-dfe3-4fed-8ff2-458dc3fda306",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:63b86f",
                        "ysrc": "loantranvn810:11:19023b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2fb19b3d-1641-4bdb-a59e-260cbd6b09ea",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a16bff",
                        "ysrc": "loantranvn810:11:84e4df",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "7e728ea7-9e01-426a-885c-18eca89c898c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c993c0",
                        "ysrc": "loantranvn810:11:6bb2d2",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b0551814-681a-4efb-937e-3cc1fdd8abe1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:589360",
                        "ysrc": "loantranvn810:11:cdc478",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d030b1d6-8cc4-40a2-81b5-ee49b2eeecf3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2dce4e",
                        "ysrc": "loantranvn810:11:474682",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ff42eb86-a03f-41e9-8ab8-447de07a79b3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c31a69",
                        "ysrc": "loantranvn810:11:ceacae",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "745127fe-1e1e-4fe9-bfd4-bd921540c32d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:4a83c9",
                        "ysrc": "loantranvn810:11:fac755",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "450cc00a-2201-49ca-899c-4316a2f4137c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1d46e9",
                        "ysrc": "loantranvn810:11:c4a3c8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "becc958b-ffb7-4ebc-9faf-fa528fea2846",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:aee7cb",
                        "ysrc": "loantranvn810:11:c2c719",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "40bd0adf-2bdb-471a-ac42-91aa1db9ffc7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ae53b4",
                        "ysrc": "loantranvn810:11:ae544b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e86aa63f-8e6b-4e29-95d1-ab733a226eb8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5794d9",
                        "ysrc": "loantranvn810:11:677eb9",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f786702f-1243-4be6-a0eb-62fa4ff1e1c4",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:f85742",
                        "ysrc": "loantranvn810:11:dc28ea",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5deb7bf6-d674-4609-959c-d45a01a05f10",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3a6bab",
                        "ysrc": "loantranvn810:11:59706b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cd992de3-bac0-4f59-b702-ee22fb65bc41",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2f077c",
                        "ysrc": "loantranvn810:11:166014",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "01dacfd8-5c69-40b3-8517-166b17d415f2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:669391",
                        "ysrc": "loantranvn810:11:021c7c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e8730515-ea47-4adf-a6bc-443b06f35a05",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3ac85c",
                        "ysrc": "loantranvn810:11:bbce72",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(61,153,112)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d462f626-786d-47b7-b1a6-7d614490b31b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2e7583",
                        "ysrc": "loantranvn810:11:395489",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eec075f5-9cec-4781-8393-374ce43b84c5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:5b2527",
                        "ysrc": "loantranvn810:11:4629e7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fef576f5-9a39-4d3b-b4a5-0251964b61ef",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ba7233",
                        "ysrc": "loantranvn810:11:aec401",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e0890001-0d19-451e-a8f2-514fcb88621e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:93cc14",
                        "ysrc": "loantranvn810:11:722e2a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "37ba64dc-f5ad-4b28-bf78-a82bd637ed3c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c92b2e",
                        "ysrc": "loantranvn810:11:a33c32",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c1910d6c-59d0-438c-a7b0-58230f34ffff",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1c891f",
                        "ysrc": "loantranvn810:11:d87575",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "771fbd38-46e9-4e4e-bc49-f959b8ddb3d1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:065dea",
                        "ysrc": "loantranvn810:11:9a3065",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "0e4a165d-f023-48cf-a977-07a39600df00",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:72b943",
                        "ysrc": "loantranvn810:11:774fd3",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e48cf4c2-c6ae-4fb1-a65c-1d6268ae4185",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:fde1db",
                        "ysrc": "loantranvn810:11:eb213a",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9aa3e974-0901-4680-894f-18a131acddee",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ebe16e",
                        "ysrc": "loantranvn810:11:7355df",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a77c9002-d914-4ff2-ae75-b5172fc9840b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1cc22f",
                        "ysrc": "loantranvn810:11:87f836",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a4578b1e-1981-417f-9b75-e69b2246052c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ef6b48",
                        "ysrc": "loantranvn810:11:544584",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "382b457f-63ec-4680-a140-09371db60714",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1ad097",
                        "ysrc": "loantranvn810:11:ae81b5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "bbb873e1-ecb1-497f-a18b-26946b56e667",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:953891",
                        "ysrc": "loantranvn810:11:73b509",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "40a7524b-5f68-49a9-b6ac-0df20deca06a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:37b384",
                        "ysrc": "loantranvn810:11:13ebb7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "76c0f8dd-21e0-486d-80f0-4b0ecafa9d30",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:eed162",
                        "ysrc": "loantranvn810:11:cf0390",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4c386221-ac14-4242-a029-ebcf192d0658",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6a3aaf",
                        "ysrc": "loantranvn810:11:ebecf7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "a2efbdf0-390e-424e-9bd7-6bc70bbe1abf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:83dd30",
                        "ysrc": "loantranvn810:11:e82886",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "68558f1c-3c13-432e-b82e-a49e5ca8c33c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d7ae20",
                        "ysrc": "loantranvn810:11:ad7dfb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "90f5372d-6bc7-44ef-bbcd-5aba8271703a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:1bead2",
                        "ysrc": "loantranvn810:11:f518cb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "251b56e2-8b3d-4823-a238-21d5a36d40fe",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c97820",
                        "ysrc": "loantranvn810:11:c2df99",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "495aed3b-d277-4730-80a7-2eea48fa1f66",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7e4832",
                        "ysrc": "loantranvn810:11:8254bd",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "19c1d1de-01c8-45a7-b9be-d9e7230a650c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:292dd5",
                        "ysrc": "loantranvn810:11:68f1f1",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "cf4599b9-05cb-46ce-8237-71ffd6a6d15e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2cde7b",
                        "ysrc": "loantranvn810:11:dc1420",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "387b947c-0afd-4dea-bbab-bad47a090103",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:de7206",
                        "ysrc": "loantranvn810:11:11a50c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4f4426e2-2772-493a-a269-6412a41dfa70",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0a3ab5",
                        "ysrc": "loantranvn810:11:662175",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "520657b9-455d-4bdc-b7cc-857d3ea2fb01",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:38dbc2",
                        "ysrc": "loantranvn810:11:517942",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "eb3c6be1-d594-4591-9b3b-8e8e9ab7beb7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e4d92f",
                        "ysrc": "loantranvn810:11:e0ca9c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "d449db0b-3c13-4d6f-a2db-e8677fdbb6c2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b3353f",
                        "ysrc": "loantranvn810:11:1c6393",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "5b7175cc-3323-44ed-9301-2a8d26b55a9b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e6ead6",
                        "ysrc": "loantranvn810:11:10e3bc",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "de212808-0bd8-4bfd-b3e0-fe3b46ec2551",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0745bc",
                        "ysrc": "loantranvn810:11:f4b0b9",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "428a4f74-44e3-4bc3-af16-d5b0dff98a4d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:af5bfb",
                        "ysrc": "loantranvn810:11:702a3b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3ebbb1d9-480b-4318-88ba-2bf7310711f8",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:04f4d1",
                        "ysrc": "loantranvn810:11:720fae",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b8e9b8b6-2276-43b3-a09e-d0068c69b2a7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0e742d",
                        "ysrc": "loantranvn810:11:528f4e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6b3b7603-9cca-4bfe-8a05-fcca8b790674",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:112dd3",
                        "ysrc": "loantranvn810:11:0b6aed",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "870184a8-c1c3-4772-9c95-399cb477ca32",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6c3138",
                        "ysrc": "loantranvn810:11:fa665c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ef132e5d-8f23-4f38-b2ce-dad885cd24f0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6b13d9",
                        "ysrc": "loantranvn810:11:12e768",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1ab333d1-ace9-4f41-a1af-68cc9f4b3fb2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:13c3c1",
                        "ysrc": "loantranvn810:11:3ae379",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "88ff1a3c-1874-4a9d-b3bc-9459ff66035e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a17013",
                        "ysrc": "loantranvn810:11:e944db",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6a7b36c6-42ff-4e74-823d-b2bf2a7a2ee6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:40a2b2",
                        "ysrc": "loantranvn810:11:67ce5d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4ad3f2e1-4687-4c5d-ae8d-9df9ae3bfbe1",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2c3c81",
                        "ysrc": "loantranvn810:11:19cdd4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "084a2667-af7a-4e47-99d7-ac8833e4090d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b95892",
                        "ysrc": "loantranvn810:11:3008bc",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "326d1927-3934-4b9c-90b6-3a93ca78d007",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:229624",
                        "ysrc": "loantranvn810:11:0e0143",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "635b977f-78ad-4ac2-be5d-6bc86a1e6c05",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c8b81e",
                        "ysrc": "loantranvn810:11:ee82a5",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "e47d3c79-f4d7-4e40-875c-c069e92054b9",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:530334",
                        "ysrc": "loantranvn810:11:d7349c",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "322f1ec9-fc7c-4303-83bb-b4ce020c9d04",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7481fb",
                        "ysrc": "loantranvn810:11:0b6db7",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b88466ea-8151-46da-bd28-a528f7a147b0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:ef74ac",
                        "ysrc": "loantranvn810:11:1b3c00",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "1f68c37b-402c-46bf-a407-b24859bbf43c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:0853c2",
                        "ysrc": "loantranvn810:11:4271ba",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ced832a5-a240-46e2-8006-1668fbe1ed89",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:2bb06f",
                        "ysrc": "loantranvn810:11:d8a7c4",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "04fede09-2745-4e20-b2f7-e67b46ca3c7d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:9ce1d6",
                        "ysrc": "loantranvn810:11:1d2c07",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "b054c1fc-0e69-4969-a873-46e559f001d0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:b293b3",
                        "ysrc": "loantranvn810:11:08bf42",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ca2c9fea-6a41-4e3a-8728-3bac1b98a2c5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e7f4da",
                        "ysrc": "loantranvn810:11:69c21e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "40d3b861-b3a0-4bfd-b320-f2287b13a036",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:e6de36",
                        "ysrc": "loantranvn810:11:eae9af",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "95c7adf4-f3b4-471b-8f03-8587e0fa4463",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bfff6a",
                        "ysrc": "loantranvn810:11:4479c8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4a1a8532-f44a-4dc7-a249-a7572fa0c3fc",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c6c6b8",
                        "ysrc": "loantranvn810:11:c10492",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "92557254-0e42-4703-9f19-82278c7b473b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:60d29f",
                        "ysrc": "loantranvn810:11:284857",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "f2f97871-95ad-4e91-b6de-b298566eb986",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:a3e95d",
                        "ysrc": "loantranvn810:11:199e3e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "6cbc7d2b-8b60-46b4-9f97-36a19090f81f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:78476f",
                        "ysrc": "loantranvn810:11:3064fa",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "91eaf89a-918c-4f38-9f69-7d1795dc2d6d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:c0a6d1",
                        "ysrc": "loantranvn810:11:10ec7d",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "08d9ee23-25a8-4299-8401-526dd569deb6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:366566",
                        "ysrc": "loantranvn810:11:ead733",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "2bbe5ee8-8855-403d-93e6-af18b8e2e2b6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:3af01f",
                        "ysrc": "loantranvn810:11:27a43b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "3b83fcbc-9ef4-4bff-922d-af3e59fea515",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d0e147",
                        "ysrc": "loantranvn810:11:4e03af",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "4f5af967-0a93-4981-a07b-84cc239172df",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:bfdf12",
                        "ysrc": "loantranvn810:11:e4bb54",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "38f06637-1fe1-4256-898f-2caac93453e2",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:88c4f8",
                        "ysrc": "loantranvn810:11:66ddc8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "fc1af7a7-9375-4841-91f8-b7b60da697c0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:6c9f37",
                        "ysrc": "loantranvn810:11:ae50be",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "01e9f211-2d3f-4891-9b1c-13ca690b6241",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:805155",
                        "ysrc": "loantranvn810:11:a53bd0",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "9db4b175-8ad7-4e7b-bc1d-98db1fd53106",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:50efc0",
                        "ysrc": "loantranvn810:11:6277d8",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "ab50e245-74d9-477a-8a82-d52cd5e76be7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:7acd25",
                        "ysrc": "loantranvn810:11:7e2f46",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "294f31e3-3f81-4e57-9649-4e42a62e8d8b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:8fb1cb",
                        "ysrc": "loantranvn810:11:fe8e8e",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c650f409-31a9-4be4-a34b-f680ed05e490",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d5e524",
                        "ysrc": "loantranvn810:11:3b9beb",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "231d38d1-0471-403f-8bb1-cc1d6bc272e0",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:36bfb8",
                        "ysrc": "loantranvn810:11:2965bc",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,65,54)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "c5a06e2d-ad73-458e-9ad2-1d315b2b940b",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "loantranvn810:11:d3f9bc",
                        "ysrc": "loantranvn810:11:e0e281",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(0,116,217)"
                        },
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "8497f90a-f683-45c8-8e33-e734b9133857",
                        "type": "heatmap",
                        "xsrc": "loantranvn810:11:587696",
                        "ysrc": "loantranvn810:11:101e7e",
                        "zsrc": "loantranvn810:11:6c031c,6aadff,1cf611,503c57,14abea,8dbdaa,a3cfb7,8b7fa7,de9838,6e6815,5dbfb3,fc9429,9c7ed9,eb8b64,b6544e,82337c,8ad901,bc0a4d,8ca02b,7969a6,ded2f0,89a505,6aaf9e,29bed2,96d808,e4daa2,00c710,0b36c0,b65df1,ac3dcc,04ec1a,e13f80,d396c4,6e4545,b5b789,fccf19,72b39b,9f2367,282cae,3ce5ae,f750f5,019a6d,f28503,c1f902,7a515d,ff3fbe,8097f7,db0787,03e962,20b924,a44fbb,ee53f9,d3c712,fd3e3c,1c0c28,67ee95,070a30,b13bc6,448a02,f4d126,8553fe,d6e5c9,ec99fa,96cb3e,d97c57,563451,2d4b7f,0a5320,dada0d,c8f984,81ff21,03a3ca,1f105f,6854be,a4337a,d0a405,2aa303,f41475,c7761e,223463,a5542f,7115c6,4393df,d4cf2f,b19de7,7083a0,2f8f6b,055b28,2ac9a0,a56efd,d374ca,3f6b4c,df154c,d1c2bc,8ae3ba,5f08e7,b58b65,81d56c,122609,cbe648,b0131c,f79032,fc1b2e,198267,13b26b,203478,0396c5,804b54,acd85c,d5bc23,7b88e7,0a0438,4ee761,1f49be,652f7b,4cfb33,c1186f,4541ac,177e5d,e92f36,5c7da3,295ae2,8d90d6,0029ae,8b15e1,77db92,d1d0b4,7b6902,6c818c,4bb0fd,443dbb,2704e9,dceb1f,4488f9,3edd28,2456ff,ad38f1,3008ab,d8a283,a0f062,d8ce84,03d805,0ac0b4,218b62,5a874f,7b280c,28d055,d10e33,bd2453,af426c,db36b8,da174c,94d233,224236,2f8e2d,52080a,0a1989,78a4c3,7b339d,32f3c7,9ec37b,a6ea90,960055,8c672f,b935bd,cf5f74,a5edf4,ab2119,0cb8fd,bdb18d,4efc89,802d4d,f3b34a,3fdb9d,9d7a5e,890901,c24495,9c4f2c,5a8661,c45922,28ec0b,a964b3,4c2bfb,9daecd,dba130,5ae91f,c39a8e,38f1d2,e6800a,34c881,e41b74,b0bc5d,ce3076,c7e923,f64c66,9dc6ef,710501,904723,3865f1,b1312e,343427,297042,00e16b,9e596a,50ed75,6a0f26,d336f3,f4cfab,d1870d,9fe319,5742c0,f0af3a,cce721,7ba2f7,261c4e,6bbba6,123f93,99c366,71d59c,d6a9e5,888b79,6a7adc,9e7533,967b63,53505a,7c7bcd,dcd466,6e3d05,7a868f,f6faa7,84f588,c75f79,35008f,74e643,6a6e5e,db8f55,cbe519,94d7db,96956b,b98c5d,a115bd,1cec0e,7d0958,875139,7f23d6,959bda,9b9421,fc1ae4,73d03e,fd33b8,04d2ab,39d6ac,21facc,4fc742,d070f9,0b996b,44f7f6,910676,0472f6,98f274,abc8e4,5323e5,3d8c56,abc8c8,5f2e8e,e97fa6,20d97f,0038c2,a13b82,bd35a8,b92e7f,daa78d,e31bf1,1e06ea,0e6c4c,26ba67,f4ac93,c74ca6,32234c,c5865b,822f10,f31fc5,cc7178,20e46b,90c233,18b752,36b44e,ec5a26,f13f20,7f4c56,8c5c5e,58dfee,1f242f,1e8483,c1783f,bba723,271ae2,ea08e0,beabbc,6f9aad,699362,9bd76d,e8f1c9,ed62f8,dd5892,20eaa7,78131a,6f7b9b,8b7df4,65e768,3fbc7d,974a02,a3115b,aa373a,4af0de,faa68e,f64537,a53996,45c06f,829052,3149fa,c3ef4b,b440c1,1e7266,de5199,75ff06,e82ae7",
                        "colorscale": "Blues"
                    }
                ],
                "layout": {
                    "width": 800,
                    "xaxis": {
                        "type": "linear",
                        "ticks": "",
                        "domain": [
                            0.15,
                            1
                        ],
                        "mirror": false,
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "141",
                            "11",
                            "107",
                            "154",
                            "286",
                            "78",
                            "303",
                            "152",
                            "189",
                            "0",
                            "210",
                            "258",
                            "33",
                            "183",
                            "157",
                            "118",
                            "313",
                            "160",
                            "123",
                            "137",
                            "7",
                            "272",
                            "85",
                            "149",
                            "301",
                            "177",
                            "124",
                            "280",
                            "204",
                            "252",
                            "109",
                            "127",
                            "77",
                            "100",
                            "159",
                            "178",
                            "271",
                            "115",
                            "165",
                            "53",
                            "169",
                            "175",
                            "117",
                            "221",
                            "254",
                            "222",
                            "80",
                            "134",
                            "190",
                            "73",
                            "46",
                            "32",
                            "98",
                            "89",
                            "90",
                            "266",
                            "308",
                            "9",
                            "88",
                            "41",
                            "261",
                            "167",
                            "168",
                            "161",
                            "259",
                            "164",
                            "166",
                            "302",
                            "248",
                            "268",
                            "225",
                            "135",
                            "304",
                            "305",
                            "253",
                            "270",
                            "12",
                            "103",
                            "108",
                            "139",
                            "1",
                            "256",
                            "173",
                            "247",
                            "150",
                            "320",
                            "6",
                            "94",
                            "20",
                            "19",
                            "106",
                            "290",
                            "318",
                            "35",
                            "269",
                            "55",
                            "217",
                            "153",
                            "67",
                            "276",
                            "128",
                            "184",
                            "316",
                            "36",
                            "284",
                            "16",
                            "96",
                            "119",
                            "120",
                            "10",
                            "312",
                            "158",
                            "4",
                            "244",
                            "315",
                            "72",
                            "223",
                            "176",
                            "279",
                            "2",
                            "14",
                            "92",
                            "49",
                            "71",
                            "186",
                            "324",
                            "66",
                            "193",
                            "291",
                            "61",
                            "263",
                            "275",
                            "79",
                            "24",
                            "13",
                            "289",
                            "87",
                            "203",
                            "267",
                            "156",
                            "207",
                            "188",
                            "274",
                            "31",
                            "69",
                            "82",
                            "50",
                            "236",
                            "201",
                            "8",
                            "56",
                            "224",
                            "75",
                            "171",
                            "192",
                            "293",
                            "15",
                            "63",
                            "25",
                            "195",
                            "18",
                            "44",
                            "70",
                            "309",
                            "191",
                            "65",
                            "281",
                            "29",
                            "227",
                            "122",
                            "226",
                            "264",
                            "283",
                            "39",
                            "174",
                            "30",
                            "288",
                            "240",
                            "278",
                            "130",
                            "311",
                            "197",
                            "34",
                            "91",
                            "273",
                            "300",
                            "38",
                            "218",
                            "219",
                            "142",
                            "47",
                            "136",
                            "138",
                            "255",
                            "257",
                            "198",
                            "233",
                            "212",
                            "277",
                            "112",
                            "181",
                            "231",
                            "243",
                            "239",
                            "297",
                            "296",
                            "58",
                            "113",
                            "213",
                            "131",
                            "114",
                            "326",
                            "200",
                            "251",
                            "151",
                            "95",
                            "182",
                            "215",
                            "205",
                            "206",
                            "196",
                            "202",
                            "250",
                            "129",
                            "323",
                            "17",
                            "43",
                            "144",
                            "229",
                            "322",
                            "172",
                            "230",
                            "26",
                            "228",
                            "5",
                            "101",
                            "306",
                            "245",
                            "84",
                            "285",
                            "27",
                            "194",
                            "148",
                            "22",
                            "163",
                            "179",
                            "238",
                            "262",
                            "111",
                            "307",
                            "23",
                            "83",
                            "110",
                            "21",
                            "48",
                            "97",
                            "299",
                            "105",
                            "133",
                            "199",
                            "235",
                            "37",
                            "295",
                            "232",
                            "260",
                            "180",
                            "40",
                            "81",
                            "208",
                            "45",
                            "214",
                            "93",
                            "321",
                            "319",
                            "143",
                            "116",
                            "242",
                            "234",
                            "294",
                            "76",
                            "126",
                            "42",
                            "265",
                            "314",
                            "282",
                            "317",
                            "68",
                            "140",
                            "125",
                            "104",
                            "237",
                            "162",
                            "86",
                            "249",
                            "211",
                            "187",
                            "298",
                            "74",
                            "246",
                            "102",
                            "57",
                            "292",
                            "241",
                            "325",
                            "145",
                            "287",
                            "209",
                            "64",
                            "132",
                            "52",
                            "155",
                            "146",
                            "99",
                            "28",
                            "147",
                            "170",
                            "216",
                            "185",
                            "62",
                            "60",
                            "220",
                            "51",
                            "121",
                            "3",
                            "54",
                            "59",
                            "310"
                        ],
                        "tickvals": [
                            5.0,
                            15.0,
                            25.0,
                            35.0,
                            45.0,
                            55.0,
                            65.0,
                            75.0,
                            85.0,
                            95.0,
                            105.0,
                            115.0,
                            125.0,
                            135.0,
                            145.0,
                            155.0,
                            165.0,
                            175.0,
                            185.0,
                            195.0,
                            205.0,
                            215.0,
                            225.0,
                            235.0,
                            245.0,
                            255.0,
                            265.0,
                            275.0,
                            285.0,
                            295.0,
                            305.0,
                            315.0,
                            325.0,
                            335.0,
                            345.0,
                            355.0,
                            365.0,
                            375.0,
                            385.0,
                            395.0,
                            405.0,
                            415.0,
                            425.0,
                            435.0,
                            445.0,
                            455.0,
                            465.0,
                            475.0,
                            485.0,
                            495.0,
                            505.0,
                            515.0,
                            525.0,
                            535.0,
                            545.0,
                            555.0,
                            565.0,
                            575.0,
                            585.0,
                            595.0,
                            605.0,
                            615.0,
                            625.0,
                            635.0,
                            645.0,
                            655.0,
                            665.0,
                            675.0,
                            685.0,
                            695.0,
                            705.0,
                            715.0,
                            725.0,
                            735.0,
                            745.0,
                            755.0,
                            765.0,
                            775.0,
                            785.0,
                            795.0,
                            805.0,
                            815.0,
                            825.0,
                            835.0,
                            845.0,
                            855.0,
                            865.0,
                            875.0,
                            885.0,
                            895.0,
                            905.0,
                            915.0,
                            925.0,
                            935.0,
                            945.0,
                            955.0,
                            965.0,
                            975.0,
                            985.0,
                            995.0,
                            1005.0,
                            1015.0,
                            1025.0,
                            1035.0,
                            1045.0,
                            1055.0,
                            1065.0,
                            1075.0,
                            1085.0,
                            1095.0,
                            1105.0,
                            1115.0,
                            1125.0,
                            1135.0,
                            1145.0,
                            1155.0,
                            1165.0,
                            1175.0,
                            1185.0,
                            1195.0,
                            1205.0,
                            1215.0,
                            1225.0,
                            1235.0,
                            1245.0,
                            1255.0,
                            1265.0,
                            1275.0,
                            1285.0,
                            1295.0,
                            1305.0,
                            1315.0,
                            1325.0,
                            1335.0,
                            1345.0,
                            1355.0,
                            1365.0,
                            1375.0,
                            1385.0,
                            1395.0,
                            1405.0,
                            1415.0,
                            1425.0,
                            1435.0,
                            1445.0,
                            1455.0,
                            1465.0,
                            1475.0,
                            1485.0,
                            1495.0,
                            1505.0,
                            1515.0,
                            1525.0,
                            1535.0,
                            1545.0,
                            1555.0,
                            1565.0,
                            1575.0,
                            1585.0,
                            1595.0,
                            1605.0,
                            1615.0,
                            1625.0,
                            1635.0,
                            1645.0,
                            1655.0,
                            1665.0,
                            1675.0,
                            1685.0,
                            1695.0,
                            1705.0,
                            1715.0,
                            1725.0,
                            1735.0,
                            1745.0,
                            1755.0,
                            1765.0,
                            1775.0,
                            1785.0,
                            1795.0,
                            1805.0,
                            1815.0,
                            1825.0,
                            1835.0,
                            1845.0,
                            1855.0,
                            1865.0,
                            1875.0,
                            1885.0,
                            1895.0,
                            1905.0,
                            1915.0,
                            1925.0,
                            1935.0,
                            1945.0,
                            1955.0,
                            1965.0,
                            1975.0,
                            1985.0,
                            1995.0,
                            2005.0,
                            2015.0,
                            2025.0,
                            2035.0,
                            2045.0,
                            2055.0,
                            2065.0,
                            2075.0,
                            2085.0,
                            2095.0,
                            2105.0,
                            2115.0,
                            2125.0,
                            2135.0,
                            2145.0,
                            2155.0,
                            2165.0,
                            2175.0,
                            2185.0,
                            2195.0,
                            2205.0,
                            2215.0,
                            2225.0,
                            2235.0,
                            2245.0,
                            2255.0,
                            2265.0,
                            2275.0,
                            2285.0,
                            2295.0,
                            2305.0,
                            2315.0,
                            2325.0,
                            2335.0,
                            2345.0,
                            2355.0,
                            2365.0,
                            2375.0,
                            2385.0,
                            2395.0,
                            2405.0,
                            2415.0,
                            2425.0,
                            2435.0,
                            2445.0,
                            2455.0,
                            2465.0,
                            2475.0,
                            2485.0,
                            2495.0,
                            2505.0,
                            2515.0,
                            2525.0,
                            2535.0,
                            2545.0,
                            2555.0,
                            2565.0,
                            2575.0,
                            2585.0,
                            2595.0,
                            2605.0,
                            2615.0,
                            2625.0,
                            2635.0,
                            2645.0,
                            2655.0,
                            2665.0,
                            2675.0,
                            2685.0,
                            2695.0,
                            2705.0,
                            2715.0,
                            2725.0,
                            2735.0,
                            2745.0,
                            2755.0,
                            2765.0,
                            2775.0,
                            2785.0,
                            2795.0,
                            2805.0,
                            2815.0,
                            2825.0,
                            2835.0,
                            2845.0,
                            2855.0,
                            2865.0,
                            2875.0,
                            2885.0,
                            2895.0,
                            2905.0,
                            2915.0,
                            2925.0,
                            2935.0,
                            2945.0,
                            2955.0,
                            2965.0,
                            2975.0,
                            2985.0,
                            2995.0,
                            3005.0,
                            3015.0,
                            3025.0,
                            3035.0,
                            3045.0,
                            3055.0,
                            3065.0,
                            3075.0,
                            3085.0,
                            3095.0,
                            3105.0,
                            3115.0,
                            3125.0,
                            3135.0,
                            3145.0,
                            3155.0,
                            3165.0,
                            3175.0,
                            3185.0,
                            3195.0,
                            3205.0,
                            3215.0,
                            3225.0,
                            3235.0,
                            3245.0,
                            3255.0,
                            3265.0
                        ],
                        "zeroline": false,
                        "rangemode": "tozero",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "ticks": "",
                        "domain": [
                            0,
                            0.85
                        ],
                        "mirror": false,
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "rangemode": "tozero",
                        "showticklabels": false
                    },
                    "height": 800,
                    "xaxis2": {
                        "ticks": "",
                        "domain": [
                            0,
                            0.15
                        ],
                        "mirror": false,
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis2": {
                        "ticks": "",
                        "domain": [
                            0.825,
                            0.975
                        ],
                        "mirror": false,
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 800,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loantranvn810",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/12.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-02-21 03:15:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loantranvn810",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}