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

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA4LTA1KzE1JTNBNDklM0EyNS45OTA2NjclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOC0wNSsxOCUzQTIzJTNBMDYuMTMxMzM3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-05T18:23:06.131337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rutujay/124.embed",
            "fid": "rutujay:124",
            "filename": "Plot 124",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rutujay/124/9_ZE0PRRDM5BSKGZJ4BNO06SPMMQLALD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rutujay/124/2_FRWZTOY63BOJNUQL6U8WNEFC7VMFA4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/124/8_L9R1P1BR9P06C9P7IZHHMN63ZLWSI1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/124/9_ZE0PRRDM5BSKGZJ4BNO06SPMMQLALD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rutujay:124",
                "plots": "https://api.plotly.com/v2/plots/rutujay:124",
                "parent": "https://api.plotly.com/v2/folders/home?user=rutujay"
            },
            "owner": "rutujay",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rutujay/124/",
            "world_readable": true,
            "date_modified": "2025-08-05T18:23:06.146Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rutujay/124/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "histogram2dcontour",
                        "xsrc": "rutujay:123:7f5e34",
                        "ysrc": "rutujay:123:1417a5",
                        "contours": {
                            "coloring": "heatmap"
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "rutujay:123:356684",
                        "ysrc": "rutujay:123:047682",
                        "marker": {
                            "size": 8,
                            "color": "red",
                            "opacity": 0.3
                        }
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rutujay",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.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-03-27 11:56:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rutujay",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T18:18:56.722436Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rutujay/122.embed",
            "fid": "rutujay:122",
            "filename": "Plot 122",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rutujay/122/9_DXMOOOJW3I2604LKGT1GVCGCAJFFB0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rutujay/122/2_61URBCD27ZAJHW2Q7KZX3LDFH7XDCQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/122/8_WB0DL6CY1S2Y7Y0IP7ZUZ3LAGOPSBH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/122/9_DXMOOOJW3I2604LKGT1GVCGCAJFFB0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rutujay:122",
                "plots": "https://api.plotly.com/v2/plots/rutujay:122",
                "parent": "https://api.plotly.com/v2/folders/home?user=rutujay"
            },
            "owner": "rutujay",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rutujay/122/",
            "world_readable": true,
            "date_modified": "2025-08-05T18:18:56.734Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rutujay/122/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "histogram2dcontour",
                        "xsrc": "rutujay:121:cec8e6",
                        "ysrc": "rutujay:121:8bd4df",
                        "contours": {
                            "coloring": "heatmap"
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "rutujay:121:6f90b5",
                        "ysrc": "rutujay:121:e136eb",
                        "marker": {
                            "size": 8,
                            "color": "red",
                            "opacity": 0.3
                        }
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rutujay",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.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-03-27 11:56:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rutujay",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T18:14:11.420407Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rutujay/120.embed",
            "fid": "rutujay:120",
            "filename": "Plot 120",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rutujay/120/9_MQHNFAN2TNEVLY72QVBQ1UGAIGX5H6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rutujay/120/2_GVRT6EJHBQ99NK19IE3FLCRNKUQNPH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/120/8_KE3MWEY9HW1SX2D8Q5EKU62Q8FKT1K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rutujay/120/9_MQHNFAN2TNEVLY72QVBQ1UGAIGX5H6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rutujay:120",
                "plots": "https://api.plotly.com/v2/plots/rutujay:120",
                "parent": "https://api.plotly.com/v2/folders/home?user=rutujay"
            },
            "owner": "rutujay",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rutujay/120/",
            "world_readable": true,
            "date_modified": "2025-08-05T18:14:11.431Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rutujay/120/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "rutujay:119:0aac09",
                        "ysrc": "rutujay:119:eecea4"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rutujay",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.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-03-27 11:56:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rutujay",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T18:12:39.728102Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mlwhite2/11.embed",
            "fid": "mlwhite2:11",
            "filename": "nn comparison for Periodic Cube Bacterium, 6000 5nm molecules, s = 250nm, η = 0.2011.html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/11/9_GATW6QPV5O6RKBG4BT105ATUO1MP7E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/11/2_8HUHUTTTXZ31RQTGUUPESCDULSKR4J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/11/8_R5UC3VF2802TZ0V31KCRD3I22NV5B1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/11/9_GATW6QPV5O6RKBG4BT105ATUO1MP7E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mlwhite2:11",
                "plots": "https://api.plotly.com/v2/plots/mlwhite2:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=mlwhite2"
            },
            "owner": "mlwhite2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mlwhite2/11/",
            "world_readable": true,
            "date_modified": "2025-08-05T19:59:05.393Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mlwhite2/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x",
                                "y": "data.0.y"
                            }
                        },
                        "mode": "markers",
                        "name": "PY nn dist.",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:15:1c52a9",
                        "ysrc": "mlwhite2:15:953be7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "PY nn dist.",
                        "hovertemplate": "color=PY nn dist.<br>x=%{x}<br>y=%{y}<extra></extra>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "markers",
                        "name": "Averaged Simulation nn dist. ; η = 0.2011, dr = 0.5 nm",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:15:ad60c4",
                        "ysrc": "mlwhite2:15:f333f4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Averaged Simulation nn dist. ; η = 0.2011, dr = 0.5 nm",
                        "hovertemplate": "color=Averaged Simulation nn dist. ; η = 0.2011, dr = 0.5 nm<br>x=%{x}<br>y=%{y}<extra></extra>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x",
                                "y": "data.2.y"
                            }
                        },
                        "mode": "markers",
                        "name": "Averaged Naive nn dist. ; η = 0.2011, dr = 0.5 nm",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:15:86672c",
                        "ysrc": "mlwhite2:15:fde6db",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Averaged Naive nn dist. ; η = 0.2011, dr = 0.5 nm",
                        "hovertemplate": "color=Averaged Naive nn dist. ; η = 0.2011, dr = 0.5 nm<br>x=%{x}<br>y=%{y}<extra></extra>"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4,
                            40
                        ],
                        "title": {
                            "text": "r (nm)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.05596001352020036,
                            0.85
                        ],
                        "title": {
                            "text": "nearest neighbor distribution"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "legend": {
                        "title": {
                            "text": "Legend:"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mlwhite2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-02 19:09:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mlwhite2",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T18:12:35.694866Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mlwhite2/9.embed",
            "fid": "mlwhite2:9",
            "filename": "g(r) comparison for Periodic Cube Bacterium, 6000 5nm molecules, s = 250nm, η = 0.2011.html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/9/9_XYX4D150QTAYC4SJNPGFKJH9K82KHR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/9/2_8KJ0UC4KWOC1KMXCNORHWYP58SC1SJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/9/8_6M1FUM5NPEO1RTD6JFUB9ENXJY0XGM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mlwhite2/9/9_XYX4D150QTAYC4SJNPGFKJH9K82KHR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mlwhite2:9",
                "plots": "https://api.plotly.com/v2/plots/mlwhite2:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=mlwhite2"
            },
            "owner": "mlwhite2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mlwhite2/9/",
            "world_readable": true,
            "date_modified": "2025-08-16T22:11:25.805Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mlwhite2/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x",
                                "y": "data.0.y"
                            }
                        },
                        "mode": "markers",
                        "name": "PY g(r)",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:22:d88d2b",
                        "ysrc": "mlwhite2:22:f12616",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "PY g(r)",
                        "hovertemplate": "color=PY g(r)<br>x=%{x}<br>y=%{y}<extra></extra>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "markers",
                        "name": "Averaged Simulation g(r) ; η = 0.2011, dr = 1.0 nm",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:22:61fc72",
                        "ysrc": "mlwhite2:22:f0a8fc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Averaged Simulation g(r) ; η = 0.2011, dr = 1.0 nm",
                        "hovertemplate": "color=Averaged Simulation g(r) ; η = 0.2011, dr = 1.0 nm<br>x=%{x}<br>y=%{y}<extra></extra>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x",
                                "y": "data.2.y"
                            }
                        },
                        "mode": "markers",
                        "name": "Averaged Naive g(r) ; η = 0.2011, dr = 1.0 nm",
                        "type": "scattergl",
                        "xsrc": "mlwhite2:22:5d4609",
                        "ysrc": "mlwhite2:22:d2b034",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Averaged Naive g(r) ; η = 0.2011, dr = 1.0 nm",
                        "hovertemplate": "color=Averaged Naive g(r) ; η = 0.2011, dr = 1.0 nm<br>x=%{x}<br>y=%{y}<extra></extra>"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5,
                            50
                        ],
                        "title": {
                            "text": "r (nm)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.1222315767232843,
                            1.8461730354438914
                        ],
                        "title": {
                            "text": "g(r)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "title": {
                            "text": "Legend:"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mlwhite2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-02 19:09:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mlwhite2",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T17:52:12.440368Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~26.2_98/15.embed",
            "fid": "26.2_98:15",
            "filename": "Plot 15",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/26.2_98/15/9_AIVFRZN9XQQTNZXH9GP33UL35VHY5S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/26.2_98/15/2_3TCRSRW5S1SW5L6HJQDLIBUJ98LONV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/26.2_98/15/8_E5THV2HHOGVBPKCTZOW5GUV3ZLRPHC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/26.2_98/15/9_AIVFRZN9XQQTNZXH9GP33UL35VHY5S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/26.2_98:15",
                "plots": "https://api.plotly.com/v2/plots/26.2_98:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=26.2_98"
            },
            "owner": "26.2_98",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~26.2_98/15/",
            "world_readable": true,
            "date_modified": "2025-09-02T14:07:12.893Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~26.2_98/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(100, 100, 101)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "26.2_98:14:f83854",
                        "ysrc": "26.2_98:14:43d44a",
                        "marker": {
                            "symbol": "triangle-left",
                            "maxdisplayed": 1
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "26.2_98:14:f2bcc3",
                        "ysrc": "26.2_98:14:43d44a",
                        "marker": {
                            "symbol": "triangle-right",
                            "maxdisplayed": 1
                        },
                        "hoverlabel": {
                            "font": {
                                "family": "calibri"
                            }
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "26.2_98:14:00f945",
                        "ysrc": "26.2_98:14:43d44a",
                        "marker": {
                            "color": "rgb(0, 0, 0)",
                            "maxdisplayed": 1
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "width": 697,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.9173992601137673,
                            5.82551016349099
                        ],
                        "nticks": 0,
                        "showgrid": true,
                        "tickmode": "linear",
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.6118233618233617,
                            2.3881766381766383
                        ],
                        "showgrid": true,
                        "autorange": false
                    },
                    "height": 288,
                    "autosize": false,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 697,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~26.2_98",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-16 21:58:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "26.2_98",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T16:45:26.865310Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aryaggnair/3.embed",
            "fid": "Aryaggnair:3",
            "filename": "Mild Steel under UTM",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Aryaggnair/3/9_UAG2VUK9581CW3U34RVUU99QYN9ERZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Aryaggnair/3/2_NKAOLRA2CRYBOKBII4KWYT70HU0E1J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Aryaggnair/3/8_Q3BEKSA2BTOYX8A8AMB5B1CLG8VNDN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Aryaggnair/3/9_UAG2VUK9581CW3U34RVUU99QYN9ERZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aryaggnair:3",
                "plots": "https://api.plotly.com/v2/plots/Aryaggnair:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aryaggnair"
            },
            "owner": "Aryaggnair",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Aryaggnair/3/",
            "world_readable": true,
            "date_modified": "2025-08-05T16:46:44.641Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aryaggnair/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Aryaggnair:2:1a7bf5",
                        "ysrc": "Aryaggnair:2:df411e"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "mild steel under UTM "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.00504098360655738,
                            0.26504098360655737
                        ],
                        "title": {
                            "text": "strain"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -31.022368043729372,
                            570.9870090437294
                        ],
                        "title": {
                            "text": "stress"
                        },
                        "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/~Aryaggnair",
                "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": "2025-08-04 19:43:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aryaggnair",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T16:31:15.643439Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rlavering/1.embed",
            "fid": "rlavering:1",
            "filename": "PGG Rose Diagram",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rlavering/1/9_L7UDGC8VG30N7KBAPEAK5PPQVBAMA1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rlavering/1/2_AULJ0PXVRIQ2OJTFBXNBY75IHI5SG4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rlavering/1/8_IOH9M4UG9J27X6UM24MFVLYQUXOM8G.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rlavering/1/9_L7UDGC8VG30N7KBAPEAK5PPQVBAMA1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rlavering:1",
                "plots": "https://api.plotly.com/v2/plots/rlavering:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=rlavering"
            },
            "owner": "rlavering",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rlavering/1/",
            "world_readable": true,
            "date_modified": "2025-08-05T16:31:15.654Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rlavering/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "0.000-0.002",
                                "theta": "Direction"
                            }
                        },
                        "mode": "markers",
                        "name": "0.000-0.002",
                        "rsrc": "rlavering:0:ad9e09",
                        "type": "barpolar",
                        "opacity": 1,
                        "visible": true,
                        "thetasrc": "rlavering:0:0d6eb5",
                        "showlegend": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "0.002-0.004",
                                "theta": "Direction"
                            }
                        },
                        "name": "0.002-0.004",
                        "rsrc": "rlavering:0:1043aa",
                        "type": "barpolar",
                        "thetasrc": "rlavering:0:0d6eb5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "0.004-0.006",
                                "theta": "Direction"
                            }
                        },
                        "name": "0.004-0.006",
                        "rsrc": "rlavering:0:707110",
                        "type": "barpolar",
                        "thetasrc": "rlavering:0:0d6eb5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "0.006-0.008",
                                "theta": "Direction"
                            }
                        },
                        "name": "0.006-0.008",
                        "rsrc": "rlavering:0:d371d8",
                        "type": "barpolar",
                        "thetasrc": "rlavering:0:0d6eb5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "0.008-0.010",
                                "theta": "Direction"
                            }
                        },
                        "name": "0.008-0.010",
                        "rsrc": "rlavering:0:bea294",
                        "type": "barpolar",
                        "thetasrc": "rlavering:0:0d6eb5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "&amp;gt; 0.010",
                                "theta": "Direction"
                            }
                        },
                        "name": "&gt; 0.010",
                        "rsrc": "rlavering:0:71d646",
                        "type": "barpolar",
                        "thetasrc": "rlavering:0:0d6eb5"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14
                    },
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "dtick": 0,
                            "range": [
                                0,
                                4.2105263157894735
                            ],
                            "tick0": 1,
                            "title": {
                                "font": {
                                    "size": 17
                                },
                                "text": "Number of Quarters"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": false,
                            "tickfont": {
                                "size": 16
                            },
                            "tickmode": "linear",
                            "autorange": true,
                            "tickformat": "",
                            "showticklabels": true
                        },
                        "angularaxis": {
                            "type": "category",
                            "dtick": 1,
                            "tick0": 0,
                            "ticks": "outside",
                            "nticks": 0,
                            "ticklen": 7,
                            "tickfont": {
                                "size": 15
                            },
                            "tickmode": "linear",
                            "direction": "clockwise",
                            "gridwidth": 1,
                            "linewidth": 3
                        }
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 21
                        },
                        "text": "Groundwater Gradient"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.75,
                        "y": 1.04,
                        "font": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 14
                            },
                            "text": "Groundwater Gradient"
                        },
                        "xanchor": "center",
                        "borderwidth": 0
                    },
                    "modebar": {
                        "bgcolor": "rgb(255, 255, 255)"
                    },
                    "autosize": true,
                    "colorway": [
                        "#FD3216",
                        "#00FE35",
                        "#6A76FC",
                        "#FED4C4",
                        "#FE00CE",
                        "#0DF9FF",
                        "#F6F926",
                        "#FF9616",
                        "#479B55",
                        "#EEA6FB",
                        "#DC587D",
                        "#D626FF",
                        "#6E899C",
                        "#00B5F7",
                        "#B68E00",
                        "#C9FBE5",
                        "#FF0092",
                        "#22FFA7",
                        "#E3EE9E",
                        "#86CE00",
                        "#BC7196",
                        "#7E7DCD",
                        "#FC6955",
                        "#E48F72"
                    ],
                    "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"
                    },
                    "uniformtext": {
                        "mode": false
                    },
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rlavering",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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": "2025-07-02 16:35:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rlavering",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T15:49:35.008588Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~qmff_minseo/34.embed",
            "fid": "qmff_minseo:34",
            "filename": "제3자배정증자 공시 전후 주가변화(scaled)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/qmff_minseo:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/qmff_minseo:34/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/qmff_minseo:34/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/qmff_minseo:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/qmff_minseo:34",
                "plots": "https://api.plotly.com/v2/plots/qmff_minseo:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=qmff_minseo"
            },
            "owner": "qmff_minseo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~qmff_minseo/34/",
            "world_readable": true,
            "date_modified": "2025-08-05T15:49:35.018Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~qmff_minseo/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "3S",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:8686e5",
                        "ysrc": "qmff_minseo:33:0a210c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "AP헬스케어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9fdd13",
                        "ysrc": "qmff_minseo:33:db1155",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "CG인바이츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5e922d",
                        "ysrc": "qmff_minseo:33:aeb5c3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "CSA 코스믹",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2ef5b9",
                        "ysrc": "qmff_minseo:33:9048ef",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "DGI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b53941",
                        "ysrc": "qmff_minseo:33:5379a2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "DH오토리드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5c7ee4",
                        "ysrc": "qmff_minseo:33:dcb16f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "DKME",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e4354d",
                        "ysrc": "qmff_minseo:33:bb3b0f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "DXVX",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2ec882",
                        "ysrc": "qmff_minseo:33:35c6cd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "EMB",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2440b2",
                        "ysrc": "qmff_minseo:33:86b35e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "FSN",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bd24e9",
                        "ysrc": "qmff_minseo:33:5441d5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HD현대마린엔진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d3da4e",
                        "ysrc": "qmff_minseo:33:19dca4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB글로벌",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ce7e8b",
                        "ysrc": "qmff_minseo:33:ea23d8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dbc78f",
                        "ysrc": "qmff_minseo:33:289493",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB이노베이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4a8007",
                        "ysrc": "qmff_minseo:33:596992",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB제넥스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:be9b85",
                        "ysrc": "qmff_minseo:33:ddf13a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB제약",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a3802b",
                        "ysrc": "qmff_minseo:33:22dbeb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB테라퓨틱스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ccfcfe",
                        "ysrc": "qmff_minseo:33:cb59cb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB파나진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:092470",
                        "ysrc": "qmff_minseo:33:81f9ea",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB펩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7d2e32",
                        "ysrc": "qmff_minseo:33:c1379d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "ISC",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5c3ab9",
                        "ysrc": "qmff_minseo:33:3eefc9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KG모빌리티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3f136b",
                        "ysrc": "qmff_minseo:33:edb680",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KH 건설",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:901c97",
                        "ysrc": "qmff_minseo:33:9a3287",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KH 미래물산",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6aa7e8",
                        "ysrc": "qmff_minseo:33:e1fbde",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KH 필룩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:44a91b",
                        "ysrc": "qmff_minseo:33:705c7f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "LS마린솔루션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:afef51",
                        "ysrc": "qmff_minseo:33:50911c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "LS티라유텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c5552c",
                        "ysrc": "qmff_minseo:33:35c4c9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "MDS테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ac1015",
                        "ysrc": "qmff_minseo:33:b7493f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "NPX",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:417496",
                        "ysrc": "qmff_minseo:33:08d2b6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "OCI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:68c138",
                        "ysrc": "qmff_minseo:33:5486c2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "PS일렉트로닉스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:088820",
                        "ysrc": "qmff_minseo:33:2432d8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SCL사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:03ceae",
                        "ysrc": "qmff_minseo:33:d141d9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SGA솔루션즈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:179db6",
                        "ysrc": "qmff_minseo:33:91d865",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SGC E&C",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:743153",
                        "ysrc": "qmff_minseo:33:6c204b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SKAI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d30bc9",
                        "ysrc": "qmff_minseo:33:756806",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SK바이오사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b97bc6",
                        "ysrc": "qmff_minseo:33:6b9fbf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SK시그넷",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bc1b0b",
                        "ysrc": "qmff_minseo:33:3f4a82",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "THE E&M",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5257df",
                        "ysrc": "qmff_minseo:33:500d5b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "TS인베스트먼트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7cbd8d",
                        "ysrc": "qmff_minseo:33:85c212",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "TS트릴리온",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f156ff",
                        "ysrc": "qmff_minseo:33:94d8ba",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "YTN",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4fc20c",
                        "ysrc": "qmff_minseo:33:9aa2bd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "강동씨앤엘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fc87cb",
                        "ysrc": "qmff_minseo:33:627929",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "고려아연",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:348ff9",
                        "ysrc": "qmff_minseo:33:3175ce",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "골드앤에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4f9af5",
                        "ysrc": "qmff_minseo:33:21ac55",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "광무",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6d61cc",
                        "ysrc": "qmff_minseo:33:20c100",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "교보증권",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:21162c",
                        "ysrc": "qmff_minseo:33:143882",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "국보",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:90b88e",
                        "ysrc": "qmff_minseo:33:000b35",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "국전약품",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b2a860",
                        "ysrc": "qmff_minseo:33:8b63ee",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "글로벌텍스프리",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:37709b",
                        "ysrc": "qmff_minseo:33:eddaa4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "금양",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:00d40b",
                        "ysrc": "qmff_minseo:33:409668",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "금호건설",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ebf09d",
                        "ysrc": "qmff_minseo:33:16f4f0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "금호에이치티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a6abb1",
                        "ysrc": "qmff_minseo:33:b4803a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "금호전기",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d9e0ac",
                        "ysrc": "qmff_minseo:33:bf628a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "까뮤이앤씨",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0c8bb3",
                        "ysrc": "qmff_minseo:33:0a44fe",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "나노엔텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5a479f",
                        "ysrc": "qmff_minseo:33:40f12b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "나라소프트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:128c41",
                        "ysrc": "qmff_minseo:33:4e1125",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "나인테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b2c541",
                        "ysrc": "qmff_minseo:33:81d087",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "네오리진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f69a3f",
                        "ysrc": "qmff_minseo:33:2b6c49",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "네오크레마",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d54bce",
                        "ysrc": "qmff_minseo:33:02e574",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "네오펙트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2b7be3",
                        "ysrc": "qmff_minseo:33:e8b074",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "네이처셀",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:992ea7",
                        "ysrc": "qmff_minseo:33:82a12b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "넥사다이내믹스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6c05ea",
                        "ysrc": "qmff_minseo:33:c33477",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "넥스턴바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:01fbe0",
                        "ysrc": "qmff_minseo:33:97606c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "넥스트아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6ec165",
                        "ysrc": "qmff_minseo:33:edd0e1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "넥써쓰",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:560f75",
                        "ysrc": "qmff_minseo:33:c4711b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "노보믹스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9e2177",
                        "ysrc": "qmff_minseo:33:4595b0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "노브메타파마",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ddfea4",
                        "ysrc": "qmff_minseo:33:d29e6d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "노블엠앤비",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:035cd0",
                        "ysrc": "qmff_minseo:33:6af87d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "녹원씨엔아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:063372",
                        "ysrc": "qmff_minseo:33:31e73b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "뉴로메카",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:72ae46",
                        "ysrc": "qmff_minseo:33:f79f16",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "뉴보텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:634c3e",
                        "ysrc": "qmff_minseo:33:5fcc7d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "뉴온",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1f45e6",
                        "ysrc": "qmff_minseo:33:c481e0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "다보링크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5fbc10",
                        "ysrc": "qmff_minseo:33:9b0dd3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "다이나믹디자인",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fcfaa3",
                        "ysrc": "qmff_minseo:33:e088ba",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대산F&B",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:17b5a4",
                        "ysrc": "qmff_minseo:33:da0b89",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대성파인텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:de83b1",
                        "ysrc": "qmff_minseo:33:5c3862",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대신증권",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c531a4",
                        "ysrc": "qmff_minseo:33:aac500",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대유에이텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:382e5c",
                        "ysrc": "qmff_minseo:33:319d68",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대호에이엘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e652eb",
                        "ysrc": "qmff_minseo:33:ba6e2c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "더라미",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:637449",
                        "ysrc": "qmff_minseo:33:1081bf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "더미동",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:70f406",
                        "ysrc": "qmff_minseo:33:b41a21",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "더코디",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:cd8cc1",
                        "ysrc": "qmff_minseo:33:8930a1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "도부",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a79579",
                        "ysrc": "qmff_minseo:33:22c670",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "동방선기",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e6e4ee",
                        "ysrc": "qmff_minseo:33:5629a8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "동성제약",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a73d41",
                        "ysrc": "qmff_minseo:33:09074e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "동일스틸럭스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bf834a",
                        "ysrc": "qmff_minseo:33:d3b78b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "드래곤플라이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ad518d",
                        "ysrc": "qmff_minseo:33:60da02",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "디모아",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:22a5cd",
                        "ysrc": "qmff_minseo:33:ded4d5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "디에이치엑스컴퍼니",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:30f0c3",
                        "ysrc": "qmff_minseo:33:4a39a7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "디와이디",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b020b2",
                        "ysrc": "qmff_minseo:33:5ae2fc",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "디지캡",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:296d4b",
                        "ysrc": "qmff_minseo:33:83cc79",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "디피코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:742f13",
                        "ysrc": "qmff_minseo:33:e868d0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "라피치",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:640c58",
                        "ysrc": "qmff_minseo:33:081f4e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "레인보우로보틱스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:502250",
                        "ysrc": "qmff_minseo:33:523aa9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "로보쓰리에이아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1f900a",
                        "ysrc": "qmff_minseo:33:de7693",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "로지스몬",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f03e3f",
                        "ysrc": "qmff_minseo:33:77d462",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "로킷헬스케어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e0cf06",
                        "ysrc": "qmff_minseo:33:50f3c6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "롯데렌탈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d89ade",
                        "ysrc": "qmff_minseo:33:284acb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "롯데에너지머티리얼즈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:32419e",
                        "ysrc": "qmff_minseo:33:61de2b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "루켄테크놀러지스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5d3323",
                        "ysrc": "qmff_minseo:33:e1cf3d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "루트락",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dd1f3b",
                        "ysrc": "qmff_minseo:33:d66f8d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "리가켐바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0c77be",
                        "ysrc": "qmff_minseo:33:523be6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "리튬포어스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bbec46",
                        "ysrc": "qmff_minseo:33:097f4d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "링크드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fd9d43",
                        "ysrc": "qmff_minseo:33:9d02f8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "마음AI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6715e3",
                        "ysrc": "qmff_minseo:33:8e3170",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "마이크로디지탈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:41e9ed",
                        "ysrc": "qmff_minseo:33:57e493",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "머니무브",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3fae7f",
                        "ysrc": "qmff_minseo:33:215ae2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메디아나",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1c9992",
                        "ysrc": "qmff_minseo:33:eefc31",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메디젠휴먼케어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:338f82",
                        "ysrc": "qmff_minseo:33:821b2b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메디콕스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:67d6f8",
                        "ysrc": "qmff_minseo:33:2cff3f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메이슨캐피탈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4a6134",
                        "ysrc": "qmff_minseo:33:53d47d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메지온",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f04fd7",
                        "ysrc": "qmff_minseo:33:51e342",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메타케어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9cb333",
                        "ysrc": "qmff_minseo:33:24f5d7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "모아라이프플러스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:240c27",
                        "ysrc": "qmff_minseo:33:0a8a2d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "무궁화인포메이션테크놀로지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fb8f29",
                        "ysrc": "qmff_minseo:33:b7e6b5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "무진메디",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a14f2f",
                        "ysrc": "qmff_minseo:33:51bd48",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "미래아이앤지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e883cb",
                        "ysrc": "qmff_minseo:33:0f332f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "미래에셋벤처투자",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2ea7be",
                        "ysrc": "qmff_minseo:33:b7ec75",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "미래엔에듀파트너",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:de6c7c",
                        "ysrc": "qmff_minseo:33:b7eeda",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "바이오인프라생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f22e1b",
                        "ysrc": "qmff_minseo:33:7c0084",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "바이오프로테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9bcd97",
                        "ysrc": "qmff_minseo:33:547eaa",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "배럴",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:167432",
                        "ysrc": "qmff_minseo:33:543eed",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "밸로프",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:409ef4",
                        "ysrc": "qmff_minseo:33:087008",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "범양건영",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b55e2c",
                        "ysrc": "qmff_minseo:33:043726",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "베셀",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2df297",
                        "ysrc": "qmff_minseo:33:6f2944",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "보령",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:067136",
                        "ysrc": "qmff_minseo:33:c81664",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "볼빅",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0fa756",
                        "ysrc": "qmff_minseo:33:d420da",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "부산주공",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:27af04",
                        "ysrc": "qmff_minseo:33:19f654",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "브릿지바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:116598",
                        "ysrc": "qmff_minseo:33:f03198",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "비유테크놀러지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6b8dcc",
                        "ysrc": "qmff_minseo:33:463f5c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "비케이탑스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ca3e5b",
                        "ysrc": "qmff_minseo:33:4a7149",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "비투엔",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:71e111",
                        "ysrc": "qmff_minseo:33:24ddd0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "빌리언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a5f3aa",
                        "ysrc": "qmff_minseo:33:c57586",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "빛과전자",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ff44f2",
                        "ysrc": "qmff_minseo:33:1abb9e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "뿌리깊은나무들",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a97c63",
                        "ysrc": "qmff_minseo:33:3d88da",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼미금속",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0d4319",
                        "ysrc": "qmff_minseo:33:a77e08",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼부토건",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1054fb",
                        "ysrc": "qmff_minseo:33:141119",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "상신전자",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ab8a84",
                        "ysrc": "qmff_minseo:33:3e5521",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "상지건설",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1247a7",
                        "ysrc": "qmff_minseo:33:401223",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "새빗켐",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6c9673",
                        "ysrc": "qmff_minseo:33:c47ec7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "서울리거",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ba8229",
                        "ysrc": "qmff_minseo:33:e2f609",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "서울바이오시스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:19d465",
                        "ysrc": "qmff_minseo:33:6edd76",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "선샤인푸드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7da4eb",
                        "ysrc": "qmff_minseo:33:c2132d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "성안머티리얼스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:73af5a",
                        "ysrc": "qmff_minseo:33:53608e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "성호전자",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1a0216",
                        "ysrc": "qmff_minseo:33:a0d74e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "세경하이테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:93768f",
                        "ysrc": "qmff_minseo:33:64c649",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "세기상사",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2110e2",
                        "ysrc": "qmff_minseo:33:0d876b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "센코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:aaa6d3",
                        "ysrc": "qmff_minseo:33:361f34",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "셀레스트라",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:99911b",
                        "ysrc": "qmff_minseo:33:c65a7e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "셀루메드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:43522a",
                        "ysrc": "qmff_minseo:33:c6e4d6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "셀젠텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e8a0ad",
                        "ysrc": "qmff_minseo:33:ded066",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "소니드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:542707",
                        "ysrc": "qmff_minseo:33:417ea8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "소룩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3ee0bd",
                        "ysrc": "qmff_minseo:33:b94c3c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "손오공",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dffca9",
                        "ysrc": "qmff_minseo:33:829f05",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "솔디펜스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9d6d0d",
                        "ysrc": "qmff_minseo:33:4dc6b9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "솔루엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0cbd35",
                        "ysrc": "qmff_minseo:33:40bb34",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "솔트룩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:624596",
                        "ysrc": "qmff_minseo:33:afff90",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "수산세보틱스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6643f0",
                        "ysrc": "qmff_minseo:33:537930",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "수성웹툰",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:8b1cc1",
                        "ysrc": "qmff_minseo:33:74052f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "스코넥",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9b8a6f",
                        "ysrc": "qmff_minseo:33:630125",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "스타코링크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:af1e7e",
                        "ysrc": "qmff_minseo:33:0fb29b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "시지메드텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:060d7a",
                        "ysrc": "qmff_minseo:33:4a284b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "실리콘투",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bfaf50",
                        "ysrc": "qmff_minseo:33:d0d2a3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "싸이토젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9b7114",
                        "ysrc": "qmff_minseo:33:1ba31c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "써니전자",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5a8c84",
                        "ysrc": "qmff_minseo:33:bfe984",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨씨에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:387238",
                        "ysrc": "qmff_minseo:33:f84569",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨아이에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5f6930",
                        "ysrc": "qmff_minseo:33:2f39c3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨알푸드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b8924a",
                        "ysrc": "qmff_minseo:33:df771b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨앗",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:877f8e",
                        "ysrc": "qmff_minseo:33:bfe0f6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨앤씨인터내셔널",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d21b6b",
                        "ysrc": "qmff_minseo:33:6f1883",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨엑스아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4eaa7e",
                        "ysrc": "qmff_minseo:33:f54ffc",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨엔티드림",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1ca23c",
                        "ysrc": "qmff_minseo:33:9f3349",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨유메디칼",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ea4945",
                        "ysrc": "qmff_minseo:33:763d65",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아센디오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:94acbf",
                        "ysrc": "qmff_minseo:33:7fa23b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아스타",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:cd41bc",
                        "ysrc": "qmff_minseo:33:9bf0b3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아스트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a9f74f",
                        "ysrc": "qmff_minseo:33:0c1976",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이씨에이치",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6fcfb5",
                        "ysrc": "qmff_minseo:33:5e283d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이씨티케이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0dfbfb",
                        "ysrc": "qmff_minseo:33:334e6a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이에이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ea4e8d",
                        "ysrc": "qmff_minseo:33:596a44",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이에이치큐",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c1d6f4",
                        "ysrc": "qmff_minseo:33:a75d1d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이엘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:69d53e",
                        "ysrc": "qmff_minseo:33:2fb096",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이엠지티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0540c0",
                        "ysrc": "qmff_minseo:33:063db6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이오바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:40566a",
                        "ysrc": "qmff_minseo:33:061e65",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이즈비전",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3d919a",
                        "ysrc": "qmff_minseo:33:d6f5b0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3bec45",
                        "ysrc": "qmff_minseo:33:e4b925",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f781d5",
                        "ysrc": "qmff_minseo:33:e10c79",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아이톡시",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e5c66a",
                        "ysrc": "qmff_minseo:33:48a989",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아주스틸",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fe5b40",
                        "ysrc": "qmff_minseo:33:bd51b8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아진전자부품",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4e952b",
                        "ysrc": "qmff_minseo:33:9a13e7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아크솔루션스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6db457",
                        "ysrc": "qmff_minseo:33:7a179a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아티스트스튜디오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ed70a7",
                        "ysrc": "qmff_minseo:33:747783",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아티스트컴퍼니",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b6e257",
                        "ysrc": "qmff_minseo:33:49a095",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "아퓨어스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5f2c9d",
                        "ysrc": "qmff_minseo:33:7dedae",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "안랩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:81c762",
                        "ysrc": "qmff_minseo:33:fa5640",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "안지오랩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6c9b3c",
                        "ysrc": "qmff_minseo:33:1ca62f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "안트로젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:570cc8",
                        "ysrc": "qmff_minseo:33:15b4a5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "알에프세미",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a35957",
                        "ysrc": "qmff_minseo:33:6631ac",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "알엔투테크놀로지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ce8968",
                        "ysrc": "qmff_minseo:33:4ffccd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "알테오젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c22f48",
                        "ysrc": "qmff_minseo:33:d686f6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "알파녹스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:259d18",
                        "ysrc": "qmff_minseo:33:b5c987",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "알파칩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:124a5a",
                        "ysrc": "qmff_minseo:33:0a0998",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "압타바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:be9eb3",
                        "ysrc": "qmff_minseo:33:463893",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "애니메디솔루션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:19aa4a",
                        "ysrc": "qmff_minseo:33:a6abf3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "애닉",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:811996",
                        "ysrc": "qmff_minseo:33:a02e13",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "앱클론",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:257065",
                        "ysrc": "qmff_minseo:33:9e6803",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "앱트뉴로사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:742bed",
                        "ysrc": "qmff_minseo:33:eaa84b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스디생명공학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9286b8",
                        "ysrc": "qmff_minseo:33:c08f2e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스디시스템",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:430fa2",
                        "ysrc": "qmff_minseo:33:a61338",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스바이오메딕스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bc8f4c",
                        "ysrc": "qmff_minseo:33:de06a4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스씨엠생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:084461",
                        "ysrc": "qmff_minseo:33:e69dcf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스아이리소스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:22114f",
                        "ysrc": "qmff_minseo:33:dfd925",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스알바이오텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:412d73",
                        "ysrc": "qmff_minseo:33:765e82",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스유앤피",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e0ba44",
                        "ysrc": "qmff_minseo:33:8ed86d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스제이켐",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:504c03",
                        "ysrc": "qmff_minseo:33:ad49d1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스케이씨에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d90bf4",
                        "ysrc": "qmff_minseo:33:ea19a7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에스티큐브",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4a02ac",
                        "ysrc": "qmff_minseo:33:4db970",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에쎈테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:112a2e",
                        "ysrc": "qmff_minseo:33:25ed96",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이루트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:eb02f7",
                        "ysrc": "qmff_minseo:33:e49502",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이비엘바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f62de5",
                        "ysrc": "qmff_minseo:33:42c2a7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이비온",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c33ec7",
                        "ysrc": "qmff_minseo:33:831a8d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이치이엠파마",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0bc9f4",
                        "ysrc": "qmff_minseo:33:ccff56",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이프로젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5241a6",
                        "ysrc": "qmff_minseo:33:7d0236",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이피알",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:64870d",
                        "ysrc": "qmff_minseo:33:ae54bf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에코글로우",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:24c2a4",
                        "ysrc": "qmff_minseo:33:883b85",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에코볼트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3f2e38",
                        "ysrc": "qmff_minseo:33:b0a5b8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에피바이오텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ec7111",
                        "ysrc": "qmff_minseo:33:74978e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엑스큐어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e8c32f",
                        "ysrc": "qmff_minseo:33:28ff4f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엑스페릭스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:84c18d",
                        "ysrc": "qmff_minseo:33:0166d8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엑시온그룹",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4df6fd",
                        "ysrc": "qmff_minseo:33:53f41b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엑시큐어하이트론",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:307541",
                        "ysrc": "qmff_minseo:33:47b059",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔솔바이오사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1da5f2",
                        "ysrc": "qmff_minseo:33:aeeee7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔시트론",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c18d77",
                        "ysrc": "qmff_minseo:33:58bf80",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔에스이엔엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bf963a",
                        "ysrc": "qmff_minseo:33:a2f180",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔젠바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:91d905",
                        "ysrc": "qmff_minseo:33:6cce17",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔지스테크널러지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7eba54",
                        "ysrc": "qmff_minseo:33:bcb4f2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔투텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:51021e",
                        "ysrc": "qmff_minseo:33:8c5426",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엘리비젼",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:372f9c",
                        "ysrc": "qmff_minseo:33:7a9562",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엘아이에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:439643",
                        "ysrc": "qmff_minseo:33:3c806c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엘앤씨바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d0e91b",
                        "ysrc": "qmff_minseo:33:6a9bcd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엘에이티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4196ba",
                        "ysrc": "qmff_minseo:33:91c7d2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엠디바이스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4ac06f",
                        "ysrc": "qmff_minseo:33:dd5ebf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엠에프엠코리아",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:86bfdc",
                        "ysrc": "qmff_minseo:33:c18256",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엠투엔",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:480667",
                        "ysrc": "qmff_minseo:33:c50005",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엣지파운드리",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:77a49d",
                        "ysrc": "qmff_minseo:33:91a7e1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "영풍제지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7878ca",
                        "ysrc": "qmff_minseo:33:1e17b9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오가닉티코스메틱",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:651647",
                        "ysrc": "qmff_minseo:33:f515fe",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오건에코텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d1e23e",
                        "ysrc": "qmff_minseo:33:06aa18",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오늘이엔엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:101a59",
                        "ysrc": "qmff_minseo:33:3eba68",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오르비텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:927ecf",
                        "ysrc": "qmff_minseo:33:e68a95",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오브젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:435126",
                        "ysrc": "qmff_minseo:33:f958e9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오성첨단소재",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e16a81",
                        "ysrc": "qmff_minseo:33:9ef964",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오픈엣지테크놀로지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:821b90",
                        "ysrc": "qmff_minseo:33:8a74ea",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "온코크로스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:acc2ea",
                        "ysrc": "qmff_minseo:33:54b450",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "올리패스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:afed70",
                        "ysrc": "qmff_minseo:33:021b8b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "옵트론텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a6f8b7",
                        "ysrc": "qmff_minseo:33:56df8e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "옵티코어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:76a4aa",
                        "ysrc": "qmff_minseo:33:648f17",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "와이지-원",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:946695",
                        "ysrc": "qmff_minseo:33:e59401",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "우리로",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c2a6ed",
                        "ysrc": "qmff_minseo:33:c2bfb3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "우정바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3d28b0",
                        "ysrc": "qmff_minseo:33:c4abd7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "위니아에이드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:eff938",
                        "ysrc": "qmff_minseo:33:a73ca1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "위메이드맥스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:19d1d7",
                        "ysrc": "qmff_minseo:33:f9e37c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "위지트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:07d6ab",
                        "ysrc": "qmff_minseo:33:ebbf65",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "윙입푸드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:843259",
                        "ysrc": "qmff_minseo:33:b595cc",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "유니트론텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:aa7576",
                        "ysrc": "qmff_minseo:33:00b2e9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "유비씨",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5a3cdd",
                        "ysrc": "qmff_minseo:33:187e26",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "유일로보틱스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:86bb35",
                        "ysrc": "qmff_minseo:33:16e615",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "유티아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a35ba7",
                        "ysrc": "qmff_minseo:33:f47cab",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "율호",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:90d294",
                        "ysrc": "qmff_minseo:33:a84501",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이노벡스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:408788",
                        "ysrc": "qmff_minseo:33:25f432",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이노스페이스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:123586",
                        "ysrc": "qmff_minseo:33:259175",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이노시뮬레이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:59e733",
                        "ysrc": "qmff_minseo:33:a290a2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이노와이어리스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:3bd816",
                        "ysrc": "qmff_minseo:33:cd53ef",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이니텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ef4228",
                        "ysrc": "qmff_minseo:33:94d627",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이브이파킹서비스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:03ff6c",
                        "ysrc": "qmff_minseo:33:dc8ab4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이성씨엔아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c446e8",
                        "ysrc": "qmff_minseo:33:088dcd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이수앱지스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ff9583",
                        "ysrc": "qmff_minseo:33:6cfb01",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이수화학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:53b955",
                        "ysrc": "qmff_minseo:33:573b80",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이스트아시아홀딩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9f14a0",
                        "ysrc": "qmff_minseo:33:6a90ec",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이아이디",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:cb1dad",
                        "ysrc": "qmff_minseo:33:1f291b",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이엔플러스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0bda09",
                        "ysrc": "qmff_minseo:33:1c9641",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이엠앤아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6c363b",
                        "ysrc": "qmff_minseo:33:b6759e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이원컴포텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2a0684",
                        "ysrc": "qmff_minseo:33:864183",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이지케어텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:397254",
                        "ysrc": "qmff_minseo:33:a8588e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이큐셀",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b3b637",
                        "ysrc": "qmff_minseo:33:3adef4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이화공영",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fb5e6c",
                        "ysrc": "qmff_minseo:33:cddf38",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인디에프",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:467858",
                        "ysrc": "qmff_minseo:33:39bdfe",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인벤티지랩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d81128",
                        "ysrc": "qmff_minseo:33:905268",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인스코비",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ded091",
                        "ysrc": "qmff_minseo:33:934c3a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인크레더블버즈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1bbea4",
                        "ysrc": "qmff_minseo:33:c99a90",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인투셀",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9e0151",
                        "ysrc": "qmff_minseo:33:3ac81c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인트로메딕",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2606e4",
                        "ysrc": "qmff_minseo:33:b13f33",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "일월지엠엘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ac652c",
                        "ysrc": "qmff_minseo:33:41fb65",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "자이언트스텝",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6e9a8d",
                        "ysrc": "qmff_minseo:33:64d392",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "전진바이오팜",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:cdac13",
                        "ysrc": "qmff_minseo:33:9483d2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제넨바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e9fbb7",
                        "ysrc": "qmff_minseo:33:7f7bd4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제노코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5a4c85",
                        "ysrc": "qmff_minseo:33:97caef",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제닉",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4bdaaa",
                        "ysrc": "qmff_minseo:33:2e6c2e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제이스코홀딩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ccde1b",
                        "ysrc": "qmff_minseo:33:a033db",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제이준코스메틱",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:96e303",
                        "ysrc": "qmff_minseo:33:8e399f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제주은행",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fcfc70",
                        "ysrc": "qmff_minseo:33:56c045",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "제주항공",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6db668",
                        "ysrc": "qmff_minseo:33:94e5ae",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "주성코퍼레이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7141b0",
                        "ysrc": "qmff_minseo:33:2df368",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "주연테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9fa86c",
                        "ysrc": "qmff_minseo:33:918d50",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "중앙첨단소재",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d88a89",
                        "ysrc": "qmff_minseo:33:6f8ada",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지놈앤컴퍼니",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1280d8",
                        "ysrc": "qmff_minseo:33:561db9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지아이이노베이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dc7fbf",
                        "ysrc": "qmff_minseo:33:6f2413",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지아이텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:8d7cd0",
                        "ysrc": "qmff_minseo:33:42951e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지앤비에스 에코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ff58d4",
                        "ysrc": "qmff_minseo:33:ca87ed",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지엘팜텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dc7fcf",
                        "ysrc": "qmff_minseo:33:896e8e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "진원생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c36376",
                        "ysrc": "qmff_minseo:33:84fa51",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "참엔지니어링",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:54b6dc",
                        "ysrc": "qmff_minseo:33:b40a4d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "청호ICT",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:099656",
                        "ysrc": "qmff_minseo:33:8dbb55",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "카이노스메드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e5bc0f",
                        "ysrc": "qmff_minseo:33:28372d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "카페24",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:100ef6",
                        "ysrc": "qmff_minseo:33:227923",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "카프로",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:db00f5",
                        "ysrc": "qmff_minseo:33:63e734",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "캐리",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e060c9",
                        "ysrc": "qmff_minseo:33:94d101",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "케이알엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6d5121",
                        "ysrc": "qmff_minseo:33:6cf134",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "케이엔더블유",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:867755",
                        "ysrc": "qmff_minseo:33:3e7313",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "케이이엠텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:1c8b66",
                        "ysrc": "qmff_minseo:33:bed22c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "케이피엠테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:29c3cc",
                        "ysrc": "qmff_minseo:33:11a943",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "케일럼",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:eed2b0",
                        "ysrc": "qmff_minseo:33:9be834",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "켐트로닉스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f382e7",
                        "ysrc": "qmff_minseo:33:0044a6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코나솔",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:43654a",
                        "ysrc": "qmff_minseo:33:5fceea",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코디",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:dfce90",
                        "ysrc": "qmff_minseo:33:1569b0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코렌텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f99c68",
                        "ysrc": "qmff_minseo:33:000aeb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코미코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b6146b",
                        "ysrc": "qmff_minseo:33:e749b1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코스나인",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ef12ac",
                        "ysrc": "qmff_minseo:33:883ea8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코스텍시스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d5c1f1",
                        "ysrc": "qmff_minseo:33:6513af",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코아스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:37580c",
                        "ysrc": "qmff_minseo:33:2d25ae",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코어라인소프트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bd99f7",
                        "ysrc": "qmff_minseo:33:a83d5f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코오롱생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:71afe2",
                        "ysrc": "qmff_minseo:33:7a5eb7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코오롱티슈진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5ab6bb",
                        "ysrc": "qmff_minseo:33:88b8b1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "퀀타매트릭스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5267cb",
                        "ysrc": "qmff_minseo:33:ccf798",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "퀀텀온",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0473a6",
                        "ysrc": "qmff_minseo:33:e44852",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "큐라티스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e55fb2",
                        "ysrc": "qmff_minseo:33:1f521f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "큐로홀딩스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0d0bca",
                        "ysrc": "qmff_minseo:33:905683",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "큐리언트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ec8a80",
                        "ysrc": "qmff_minseo:33:8f8d2a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "큐브엔터",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:bf329f",
                        "ysrc": "qmff_minseo:33:718c13",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "크라우드웍스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:aa2705",
                        "ysrc": "qmff_minseo:33:cb5e00",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "크레오에스지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ff98bc",
                        "ysrc": "qmff_minseo:33:ee6c29",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "크리스탈신소재",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:10de9c",
                        "ysrc": "qmff_minseo:33:0d80d6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "타스컴",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:ef562e",
                        "ysrc": "qmff_minseo:33:25e864",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "탈로스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:12e38d",
                        "ysrc": "qmff_minseo:33:7bdfda",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "태양기계",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:04d4cf",
                        "ysrc": "qmff_minseo:33:a92d41",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "태영건설",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:42019e",
                        "ysrc": "qmff_minseo:33:f86813",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "태웅로직스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:8f654b",
                        "ysrc": "qmff_minseo:33:735705",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "테라사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:5e6e7f",
                        "ysrc": "qmff_minseo:33:9e851c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "테라젠이텍스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:896301",
                        "ysrc": "qmff_minseo:33:741007",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "테크엔",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:103cd1",
                        "ysrc": "qmff_minseo:33:297fca",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "테크트랜스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a87163",
                        "ysrc": "qmff_minseo:33:1eefa9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티사이언티픽",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:efbca9",
                        "ysrc": "qmff_minseo:33:506104",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티앤알바이오팹",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d74d35",
                        "ysrc": "qmff_minseo:33:235a6d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티에스넥스젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2409d8",
                        "ysrc": "qmff_minseo:33:784272",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티에스아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:15405b",
                        "ysrc": "qmff_minseo:33:d3fdee",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티엘엔지니어링",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:729964",
                        "ysrc": "qmff_minseo:33:494fdf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "티움바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:604f7c",
                        "ysrc": "qmff_minseo:33:4203c1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "파나케이아",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:070b7d",
                        "ysrc": "qmff_minseo:33:f5cbc8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "파라텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:c41bb8",
                        "ysrc": "qmff_minseo:33:6738f5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "파마리서치",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a94373",
                        "ysrc": "qmff_minseo:33:2ce5f5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "파멥신",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d9f787",
                        "ysrc": "qmff_minseo:33:f1a61a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "파워넷",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a5ec99",
                        "ysrc": "qmff_minseo:33:527d4e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "팡스카이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4e721f",
                        "ysrc": "qmff_minseo:33:e16ea9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "팬젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e54c2b",
                        "ysrc": "qmff_minseo:33:664f5e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "펨토바이오메드",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b89556",
                        "ysrc": "qmff_minseo:33:0a7702",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "포니링크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d78649",
                        "ysrc": "qmff_minseo:33:5b5142",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "포커스에이아이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4ccc81",
                        "ysrc": "qmff_minseo:33:82b319",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "포톤",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:54127e",
                        "ysrc": "qmff_minseo:33:b140c1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "폴라리스AI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:549733",
                        "ysrc": "qmff_minseo:33:568c40",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "폴라리스AI파마",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7ffbb1",
                        "ysrc": "qmff_minseo:33:28f8d7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "폴라리스세원",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2a919c",
                        "ysrc": "qmff_minseo:33:65f67c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "푸드나무",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:47903f",
                        "ysrc": "qmff_minseo:33:8a1afb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "풍원정밀",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6466f7",
                        "ysrc": "qmff_minseo:33:51b66a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "퓨쳐메디신",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:fce136",
                        "ysrc": "qmff_minseo:33:f45400",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "퓨쳐켐",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:32596a",
                        "ysrc": "qmff_minseo:33:9b03cd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "프레스티지바이오로직스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2fb4c7",
                        "ysrc": "qmff_minseo:33:b79c57",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "프로젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7a3d8b",
                        "ysrc": "qmff_minseo:33:1287bb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "플라즈맵",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6c9dde",
                        "ysrc": "qmff_minseo:33:aa7e89",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "플럼라인생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e74917",
                        "ysrc": "qmff_minseo:33:e7aec1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "플레이그램",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:252cc6",
                        "ysrc": "qmff_minseo:33:2a2d76",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "플루토스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:7e88c5",
                        "ysrc": "qmff_minseo:33:f0a864",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피노",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e877d4",
                        "ysrc": "qmff_minseo:33:1bce2a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피씨엘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:68eaa4",
                        "ysrc": "qmff_minseo:33:7c48a3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피엔아이컴퍼니",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:a654a6",
                        "ysrc": "qmff_minseo:33:9f5844",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피엔티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0f25c4",
                        "ysrc": "qmff_minseo:33:616f63",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피엔티엠에스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:de3fa2",
                        "ysrc": "qmff_minseo:33:8db2fa",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "피플바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:e2b6a0",
                        "ysrc": "qmff_minseo:33:e74be7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "핑거스토리",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:6285f5",
                        "ysrc": "qmff_minseo:33:782d36",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "하이드로리튬",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:9dddd2",
                        "ysrc": "qmff_minseo:33:5b4324",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "하이딥",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:62eb84",
                        "ysrc": "qmff_minseo:33:68ec09",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "하이브",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0d00bf",
                        "ysrc": "qmff_minseo:33:39987d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "하이퍼코퍼레이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:055859",
                        "ysrc": "qmff_minseo:33:1e5154",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한국피아이엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:084cb0",
                        "ysrc": "qmff_minseo:33:54ae0e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한온시스템",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:27c79c",
                        "ysrc": "qmff_minseo:33:893a6e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한울비앤씨",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:f8f7c3",
                        "ysrc": "qmff_minseo:33:b649df",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한울소재과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:02d89d",
                        "ysrc": "qmff_minseo:33:50ff11",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한울앤제주",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:b13c73",
                        "ysrc": "qmff_minseo:33:cfb0a4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한주라이트메탈",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:006daf",
                        "ysrc": "qmff_minseo:33:ee6864",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한주에이알티",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:0b176d",
                        "ysrc": "qmff_minseo:33:ab8e5d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한창",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:8bc76f",
                        "ysrc": "qmff_minseo:33:43e099",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한탑",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:330145",
                        "ysrc": "qmff_minseo:33:020e99",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한화에어로스페이스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:744065",
                        "ysrc": "qmff_minseo:33:ea658a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한화엔진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:348805",
                        "ysrc": "qmff_minseo:33:2672f0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한화오션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2b903a",
                        "ysrc": "qmff_minseo:33:0fa534",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "해성옵틱스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:acbf73",
                        "ysrc": "qmff_minseo:33:646c47",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "헝셩그룹",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:4606c4",
                        "ysrc": "qmff_minseo:33:2559f0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "헬릭스미스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:38113d",
                        "ysrc": "qmff_minseo:33:3d02db",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "현대ADM",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:315b66",
                        "ysrc": "qmff_minseo:33:de2fa6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "현대사료",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:de37db",
                        "ysrc": "qmff_minseo:33:18b1e4",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "협진",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:11324b",
                        "ysrc": "qmff_minseo:33:ec3751",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "화인베스틸",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:2a3ff8",
                        "ysrc": "qmff_minseo:33:f6c00c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "화일약품",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:375429",
                        "ysrc": "qmff_minseo:33:44d088",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "효성화학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:567b88",
                        "ysrc": "qmff_minseo:33:e3f463",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "휴림로봇",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:404d4a",
                        "ysrc": "qmff_minseo:33:954f9d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "휴림에이텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:674b64",
                        "ysrc": "qmff_minseo:33:3d945a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "휴먼테크놀로지",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:d91a37",
                        "ysrc": "qmff_minseo:33:f4d563",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 3
                        },
                        "mode": "lines+markers",
                        "name": "전체 평균",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:33:016206",
                        "ysrc": "qmff_minseo:33:4651e9",
                        "marker": {
                            "size": 8
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "제3자배정증자 공시 전후 주가변화(scaled)"
                    },
                    "width": 900,
                    "xaxis": {
                        "title": {
                            "text": "공시일 기준 상대 날짜"
                        }
                    },
                    "yaxis": {
                        "range": [
                            0.6,
                            1.4
                        ],
                        "title": {
                            "text": "주가 변화율 (공시일 주가 = 1)"
                        }
                    },
                    "height": 500,
                    "shapes": [
                        {
                            "x0": "D+0",
                            "x1": "D-5",
                            "y0": 1.0,
                            "y1": 1.0,
                            "line": {
                                "dash": "dot",
                                "color": "red",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": "D+0",
                            "y": 1.0,
                            "font": {
                                "color": "red"
                            },
                            "text": "D+0 기준 (y=1.0)",
                            "yshift": 10,
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 500,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~qmff_minseo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.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": "2025-08-05 15:13:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "qmff_minseo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-05T15:49:25.990667Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~qmff_minseo/32.embed",
            "fid": "qmff_minseo:32",
            "filename": "주주배정후 실권주일반공모 공시 전후 주가변화(scaled)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/qmff_minseo/32/9_65XU2J5QNRJJA0J6C7ZV2LAO8UMR6O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/qmff_minseo/32/2_BUZHK25AROQZN91Y71LZ9A4KYND5M5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/qmff_minseo/32/8_O0ZC80NMV1T3N59SNA3VSLIQRHMVGF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/qmff_minseo/32/9_65XU2J5QNRJJA0J6C7ZV2LAO8UMR6O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/qmff_minseo:32",
                "plots": "https://api.plotly.com/v2/plots/qmff_minseo:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=qmff_minseo"
            },
            "owner": "qmff_minseo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~qmff_minseo/32/",
            "world_readable": true,
            "date_modified": "2025-08-05T15:49:26.001Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~qmff_minseo/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "CJ CGV",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:704dc8",
                        "ysrc": "qmff_minseo:31:4516d5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "CJ 바이오사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:39f128",
                        "ysrc": "qmff_minseo:31:9de171",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "DH오토웨어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:72899d",
                        "ysrc": "qmff_minseo:31:a89fee",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "E8",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:52a959",
                        "ysrc": "qmff_minseo:31:54084d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "ESR켄달스퀘어리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:4cd472",
                        "ysrc": "qmff_minseo:31:1dbb61",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "HLB생명과학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:c91672",
                        "ysrc": "qmff_minseo:31:a09fa6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KC코트렐",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:e15ba2",
                        "ysrc": "qmff_minseo:31:488d1e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KEC",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:9f1523",
                        "ysrc": "qmff_minseo:31:6f9e1c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "KR모터스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:d4cadd",
                        "ysrc": "qmff_minseo:31:b1ca9f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "NH올원리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:ac6faf",
                        "ysrc": "qmff_minseo:31:ee1411",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SG",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:4362a3",
                        "ysrc": "qmff_minseo:31:8bb2f0",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SK리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:79f14d",
                        "ysrc": "qmff_minseo:31:8b125e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "SK이노베이션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:88ec7e",
                        "ysrc": "qmff_minseo:31:be00be",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "STX",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:5db967",
                        "ysrc": "qmff_minseo:31:79f03d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "강스템바이오텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:5399f1",
                        "ysrc": "qmff_minseo:31:2daede",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "경남제약",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:9e6086",
                        "ysrc": "qmff_minseo:31:bd1373",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "네오이뮨텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:4d32cf",
                        "ysrc": "qmff_minseo:31:061dd7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "누리플랜",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:409447",
                        "ysrc": "qmff_minseo:31:f70894",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "뉴인텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:0c8abe",
                        "ysrc": "qmff_minseo:31:bf4aba",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "다원시스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:ecc6cc",
                        "ysrc": "qmff_minseo:31:7646ae",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대성창투",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:2c0113",
                        "ysrc": "qmff_minseo:31:9d055f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대한광통신",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:737e89",
                        "ysrc": "qmff_minseo:31:49f3bd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "대한전선",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:01d9ab",
                        "ysrc": "qmff_minseo:31:7502a2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "라닉스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:633ea0",
                        "ysrc": "qmff_minseo:31:6a04d9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "레몬",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:b63ad5",
                        "ysrc": "qmff_minseo:31:dcc343",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "롯데리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:039a4b",
                        "ysrc": "qmff_minseo:31:b983e8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메드팩토",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:77b4d1",
                        "ysrc": "qmff_minseo:31:03b5cf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "메디포스트",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:63e499",
                        "ysrc": "qmff_minseo:31:648c02",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "미래에셋맵스리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:da441c",
                        "ysrc": "qmff_minseo:31:084eaf",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "부광약품",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:313291",
                        "ysrc": "qmff_minseo:31:c83f86",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "비트맥스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:689d14",
                        "ysrc": "qmff_minseo:31:7ddc91",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼보산업",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:060af0",
                        "ysrc": "qmff_minseo:31:ad27f1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼성FN리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:472a11",
                        "ysrc": "qmff_minseo:31:fab4b8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼성SDI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:541b13",
                        "ysrc": "qmff_minseo:31:fe52c9",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼성제약",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:1c095f",
                        "ysrc": "qmff_minseo:31:c265d3",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "삼화전자공업",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6342f9",
                        "ysrc": "qmff_minseo:31:1d89bc",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "센서뷰",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:350dad",
                        "ysrc": "qmff_minseo:31:27ff8a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "셀바스AI",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:870b8b",
                        "ysrc": "qmff_minseo:31:19fc95",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "셀바스헬스케어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:e137f0",
                        "ysrc": "qmff_minseo:31:8a4e42",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "스맥",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:41992b",
                        "ysrc": "qmff_minseo:31:2d906c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "스피어",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:15f091",
                        "ysrc": "qmff_minseo:31:c0387a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "신라젠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:d20324",
                        "ysrc": "qmff_minseo:31:3c191c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "신한알파리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:cd0dc1",
                        "ysrc": "qmff_minseo:31:d4814e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "씨이랩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:4bb92e",
                        "ysrc": "qmff_minseo:31:0d65cb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "압타머사이언스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:a92537",
                        "ysrc": "qmff_minseo:31:29b602",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이스테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:8ae789",
                        "ysrc": "qmff_minseo:31:875ddb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에이프로젠바이오로직스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:f08c46",
                        "ysrc": "qmff_minseo:31:aaddd8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에코앤드림",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6f9355",
                        "ysrc": "qmff_minseo:31:aa4b1a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에코프로에이치엔",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:d6b359",
                        "ysrc": "qmff_minseo:31:193dd2",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "에코플라스틱",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:e487e4",
                        "ysrc": "qmff_minseo:31:f6b3e8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엑시콘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:d8f5dc",
                        "ysrc": "qmff_minseo:31:a1f556",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엔브이에이치코리아",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6d4d72",
                        "ysrc": "qmff_minseo:31:3bfbe1",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엘앤케이바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:3db451",
                        "ysrc": "qmff_minseo:31:d06422",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "엠젠솔루션",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:a81344",
                        "ysrc": "qmff_minseo:31:89a64e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "오텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:427e8a",
                        "ysrc": "qmff_minseo:31:5e4133",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "옴니시스템",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:69e8c3",
                        "ysrc": "qmff_minseo:31:6dbe51",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "원익피앤이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:0cea4c",
                        "ysrc": "qmff_minseo:31:ef39bb",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "윈팩",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:7a5136",
                        "ysrc": "qmff_minseo:31:36daa8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "유니슨",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:67970a",
                        "ysrc": "qmff_minseo:31:283e16",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이렘",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:bbaee0",
                        "ysrc": "qmff_minseo:31:2a6e89",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이브이첨단소재",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:55deaf",
                        "ysrc": "qmff_minseo:31:cf43b6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이수페타시스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6893d3",
                        "ysrc": "qmff_minseo:31:954e9e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이지스레지던스리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:813d8f",
                        "ysrc": "qmff_minseo:31:788e1d",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "이지스밸류플러스리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:30b545",
                        "ysrc": "qmff_minseo:31:7fc108",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인성정보",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:24ca28",
                        "ysrc": "qmff_minseo:31:dc5961",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "인텔리안테크",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:e6e8c7",
                        "ysrc": "qmff_minseo:31:0a097f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "자비스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:321ba4",
                        "ysrc": "qmff_minseo:31:96e9dd",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "자연과환경",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:3daff0",
                        "ysrc": "qmff_minseo:31:083409",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "젠큐릭스",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:1935e6",
                        "ysrc": "qmff_minseo:31:c891ef",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "지엔코",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:8dc617",
                        "ysrc": "qmff_minseo:31:9c04ba",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "진양화학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:f739ca",
                        "ysrc": "qmff_minseo:31:814369",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "차바이오텍",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:56525e",
                        "ysrc": "qmff_minseo:31:4a9a5c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "캐스텍코리아",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:a6d09c",
                        "ysrc": "qmff_minseo:31:e1fde7",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코람코라이프인프라리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:bc1b1a",
                        "ysrc": "qmff_minseo:31:00071a",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코스모신소재",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:00e3d9",
                        "ysrc": "qmff_minseo:31:824c1f",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "코스모화학",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:7da704",
                        "ysrc": "qmff_minseo:31:e5cab8",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "퀄리타스반도체",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6a11f1",
                        "ysrc": "qmff_minseo:31:ed7407",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "큐라클",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:61f1fa",
                        "ysrc": "qmff_minseo:31:9952fa",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "태성",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:17376e",
                        "ysrc": "qmff_minseo:31:e653da",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "판타지오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:5f005a",
                        "ysrc": "qmff_minseo:31:a8210e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "펩트론",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:eba427",
                        "ysrc": "qmff_minseo:31:9cb382",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "포스코퓨처엠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:44102b",
                        "ysrc": "qmff_minseo:31:7830c6",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한세엠케이",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:6d50bb",
                        "ysrc": "qmff_minseo:31:2dacab",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "한화리츠",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:c4a944",
                        "ysrc": "qmff_minseo:31:ec4a2e",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "현대바이오",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:4c8e86",
                        "ysrc": "qmff_minseo:31:a935b5",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "mode": "lines+markers",
                        "name": "후성",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:57cd8c",
                        "ysrc": "qmff_minseo:31:c7136c",
                        "marker": {
                            "size": 6
                        },
                        "opacity": 0.3,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 3
                        },
                        "mode": "lines+markers",
                        "name": "전체 평균",
                        "type": "scatter",
                        "xsrc": "qmff_minseo:31:925e63",
                        "ysrc": "qmff_minseo:31:ae9314",
                        "marker": {
                            "size": 8
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "주주배정후 실권주일반공모 공시 전후 주가변화(scaled)"
                    },
                    "width": 900,
                    "xaxis": {
                        "title": {
                            "text": "공시일 기준 상대 날짜"
                        }
                    },
                    "yaxis": {
                        "range": [
                            0.6,
                            1.4
                        ],
                        "title": {
                            "text": "주가 변화율 (공시일 주가 = 1)"
                        }
                    },
                    "height": 500,
                    "shapes": [
                        {
                            "x0": "D+0",
                            "x1": "D-5",
                            "y0": 1.0,
                            "y1": 1.0,
                            "line": {
                                "dash": "dot",
                                "color": "red",
                                "width": 2
                            },
                            "type": "line"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": "D+0",
                            "y": 1.0,
                            "font": {
                                "color": "red"
                            },
                            "text": "D+0 기준 (y=1.0)",
                            "yshift": 10,
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 500,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~qmff_minseo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.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": "2025-08-05 15:13:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "qmff_minseo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}