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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA2LTE5KzEwJTNBNDglM0ExMi45ODA3MjklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0xOSsxMSUzQTAwJTNBNDMuMjE2NjU2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-19T11:00:43.216656Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kimsiheon/75.embed",
            "fid": "kimsiheon:75",
            "filename": "생활쓰레기",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/75/9_H53DVI9FST88TDNGY4FS3LXWCF2ERI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/75/2_20OPXA0Y1X0GOMGYET6PDOXLZDH77I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/75/8_3PGA7AJ87RI4ZDXY72FJRKPG3V7Q93.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/75/9_H53DVI9FST88TDNGY4FS3LXWCF2ERI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kimsiheon:75",
                "plots": "https://api.plotly.com/v2/plots/kimsiheon:75",
                "parent": "https://api.plotly.com/v2/folders/home?user=kimsiheon"
            },
            "owner": "kimsiheon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~kimsiheon/75/",
            "world_readable": true,
            "date_modified": "2025-06-19T11:17:42.167Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kimsiheon/75/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "kimsiheon:82:5d952a",
                        "ysrc": "kimsiheon:82:e8cd3a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "반입연월=%{x}<br>합계=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "생활쓰레기 월별 발생량 반입연월에 따른 합계량"
                    },
                    "xaxis": {
                        "dtick": "M6",
                        "title": {
                            "text": "반입연월"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "tickformat": "%Y-%m"
                    },
                    "yaxis": {
                        "title": {
                            "text": "합계"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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/~kimsiheon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:44:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kimsiheon",
                "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-06-19T10:57:47.269068Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~antle/89.embed",
            "fid": "antle:89",
            "filename": "antle12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/antle/89/9_5IB7SQN8G3NVUF6603L6KGU5HGTJHX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/antle/89/2_7QV3SKXZGBDA3XTNGJTCFZC41C6KCH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/antle/89/8_B86ERC41P0VN68MHBEUNAS53KSWNIB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/antle/89/9_5IB7SQN8G3NVUF6603L6KGU5HGTJHX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/antle:89",
                "plots": "https://api.plotly.com/v2/plots/antle:89",
                "parent": "https://api.plotly.com/v2/folders/home?user=antle"
            },
            "owner": "antle",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~antle/89/",
            "world_readable": true,
            "date_modified": "2025-06-22T16:11:45.068Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~antle/89/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines",
                        "name": "",
                        "rsrc": "antle:138:a74ef8",
                        "type": "scatterpolar",
                        "marker": {
                            "symbol": "circle"
                        },
                        "subplot": "polar",
                        "thetasrc": "antle:138:7e77dd",
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertemplate": "점수=%{r}<br>능력치=%{theta}<extra></extra>"
                    }
                ],
                "layout": {
                    "polar": {
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "angularaxis": {
                            "rotation": 90,
                            "direction": "clockwise"
                        }
                    },
                    "title": {
                        "text": "Neymar Jr FIFA 선수 능력치 레이더 차트"
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#f2f5fa"
                                    },
                                    "error_y": {
                                        "color": "#f2f5fa"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                            "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": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "dark"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "color": "#f2f5fa"
                                }
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~antle",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.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-06-17 11:08:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "antle",
                "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-06-19T10:57:31.262487Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kimsiheon/73.embed",
            "fid": "kimsiheon:73",
            "filename": "한남동",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/73/9_WRZNM1KAWTWNA0123XHRPVI1OFKLRH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/73/2_M9L47PKTR4RKIL4KDR3QKODABJ7NKE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/73/8_2U2I7VLL87F81SL1RUQLXW75BW8V0E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/73/9_WRZNM1KAWTWNA0123XHRPVI1OFKLRH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kimsiheon:73",
                "plots": "https://api.plotly.com/v2/plots/kimsiheon:73",
                "parent": "https://api.plotly.com/v2/folders/home?user=kimsiheon"
            },
            "owner": "kimsiheon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kimsiheon/73/",
            "world_readable": true,
            "date_modified": "2025-06-19T10:57:31.273Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kimsiheon/73/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "kimsiheon:72:b709ed",
                        "ysrc": "kimsiheon:72:f140fa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "반입연월=%{x}<br>합계=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "생활쓰레기 월별 발생량 반입연월에 따른 합계량"
                    },
                    "xaxis": {
                        "dtick": "M1",
                        "title": {
                            "text": "반입연월"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "tickformat": "%Y-%m"
                    },
                    "yaxis": {
                        "title": {
                            "text": "합계"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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/~kimsiheon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:44:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kimsiheon",
                "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-06-19T10:55:34.574780Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pighuman777/31.embed",
            "fid": "pighuman777:31",
            "filename": "table",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pighuman777/31/9_ZZH4G8X3ZQO1AY709FHRJVTEY7OACY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pighuman777/31/2_40ATV7KQM5LZE8FGAR81UMAVOK8AIK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/31/8_4UB88DBQ1RE1P3DZXSNNNHKJPJ0GLJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/31/9_ZZH4G8X3ZQO1AY709FHRJVTEY7OACY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pighuman777:31",
                "plots": "https://api.plotly.com/v2/plots/pighuman777:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=pighuman777"
            },
            "owner": "pighuman777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 10,
            "web_url": "https://chart-studio.plotly.com/~pighuman777/31/",
            "world_readable": true,
            "date_modified": "2025-06-19T11:02:28.505Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pighuman777/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "height": 50,
                            "valuessrc": "pighuman777:33:fdfe70"
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "height": 50,
                            "valuessrc": "pighuman777:33:ad6c42"
                        },
                        "columnwidthsrc": "pighuman777:33:70f7b3"
                    }
                ],
                "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/~pighuman777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:45:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pighuman777",
                "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-06-19T10:52:20.132772Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kimsiheon/66.embed",
            "fid": "kimsiheon:66",
            "filename": "한남동 연령별 인구수-1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/66/9_RMYAWCTD5TK4M4XQQGVF5SCA0LN36D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/66/2_GE4IUEM3YIP5PMOY4KLK7P5EUGVJ5Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/66/8_48AS52J1I1PYTJWDC30GJUY89CDYB5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/66/9_RMYAWCTD5TK4M4XQQGVF5SCA0LN36D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kimsiheon:66",
                "plots": "https://api.plotly.com/v2/plots/kimsiheon:66",
                "parent": "https://api.plotly.com/v2/folders/home?user=kimsiheon"
            },
            "owner": "kimsiheon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kimsiheon/66/",
            "world_readable": true,
            "date_modified": "2025-06-19T10:52:20.144Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kimsiheon/66/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "height": 30,
                            "valuessrc": "kimsiheon:65:21d37e"
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "kimsiheon:65:21ade1"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "경기도 부천시_문화공간 개방시설 현황"
                    },
                    "width": 1500,
                    "height": 800,
                    "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": 800,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kimsiheon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:44:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kimsiheon",
                "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-06-19T10:50:35.582358Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pighuman777/26.embed",
            "fid": "pighuman777:26",
            "filename": "gantt",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pighuman777/26/9_90TR5U2SUYRAVICTQ46LYZJL7FT3IW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pighuman777/26/2_F0CDIO4ZCLC1HGUH7C6KRGS7LMWOOX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/26/8_T6H4XPDSZWGQCR6VT9LOSI679JP3U1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/26/9_90TR5U2SUYRAVICTQ46LYZJL7FT3IW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pighuman777:26",
                "plots": "https://api.plotly.com/v2/plots/pighuman777:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=pighuman777"
            },
            "owner": "pighuman777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 17,
            "web_url": "https://chart-studio.plotly.com/~pighuman777/26/",
            "world_readable": true,
            "date_modified": "2025-06-19T11:17:24.205Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pighuman777/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "bar",
                        "xsrc": "pighuman777:38:f32ac2",
                        "ysrc": "pighuman777:38:3cf696",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "pighuman777:38:4dc870",
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "해체작업시작일=%{base}<br>해체작업종료일=%{x}<br>건물명=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "석면 해체 작업 일정"
                    },
                    "xaxis": {
                        "type": "date",
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showline": true,
                        "linecolor": "black",
                        "linewidth": 1,
                        "tickformat": "%Y-%m-%d"
                    },
                    "yaxis": {
                        "title": {
                            "text": "건물명"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "autorange": "reversed"
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "barmode": "overlay",
                    "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/~pighuman777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:45:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pighuman777",
                "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-06-19T10:50:26.073507Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SmileJang/20.embed",
            "fid": "SmileJang:20",
            "filename": "a",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/SmileJang:20/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SmileJang:20/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/SmileJang:20/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/SmileJang:20/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SmileJang:20",
                "plots": "https://api.plotly.com/v2/plots/SmileJang:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=SmileJang"
            },
            "owner": "SmileJang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~SmileJang/20/",
            "world_readable": true,
            "date_modified": "2025-06-19T10:52:23.299Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SmileJang/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "일도·일산 및 분당 공급관리소 증설 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e97fb2",
                        "ysrc": "SmileJang:21:d08bb3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:f54407",
                        "showlegend": true,
                        "legendgroup": "일도·일산 및 분당 공급관리소 증설 설계 및 감리기술용역",
                        "offsetgroup": "일도·일산 및 분당 공급관리소 증설 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=일도·일산 및 분당 공급관리소 증설 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "러시아) SAKHA GAS PNG사업  예비타당성 조사",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d0e7f5",
                        "ysrc": "SmileJang:21:c5cd1a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7d5f34",
                        "showlegend": true,
                        "legendgroup": "러시아) SAKHA GAS PNG사업  예비타당성 조사",
                        "offsetgroup": "러시아) SAKHA GAS PNG사업  예비타당성 조사",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=러시아) SAKHA GAS PNG사업  예비타당성 조사<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "일산~의정부 환상배관 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d0fabd",
                        "ysrc": "SmileJang:21:3a37b0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b33853",
                        "showlegend": true,
                        "legendgroup": "일산~의정부 환상배관 설계 및 감리기술용역",
                        "offsetgroup": "일산~의정부 환상배관 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=일산~의정부 환상배관 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "이르쿠츠크 PNG사업 타당성 조사(배관분야) 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3ce0da",
                        "ysrc": "SmileJang:21:c88200",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e8cfa4",
                        "showlegend": true,
                        "legendgroup": "이르쿠츠크 PNG사업 타당성 조사(배관분야) 용역",
                        "offsetgroup": "이르쿠츠크 PNG사업 타당성 조사(배관분야) 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=이르쿠츠크 PNG사업 타당성 조사(배관분야) 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천생산기지 Pilot LNG 저장탱크(1,000kl) 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e8baf0",
                        "ysrc": "SmileJang:21:9ca7c8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ca95a7",
                        "showlegend": true,
                        "legendgroup": "인천생산기지 Pilot LNG 저장탱크(1,000kl) 설계 및 감리기술용역",
                        "offsetgroup": "인천생산기지 Pilot LNG 저장탱크(1,000kl) 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천생산기지 Pilot LNG 저장탱크(1,000kl) 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "수도권 광역환상배관망 육상구간 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:fce5ae",
                        "ysrc": "SmileJang:21:6f8968",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:84e60c",
                        "showlegend": true,
                        "legendgroup": "수도권 광역환상배관망 육상구간 설계 및 감리기술용역",
                        "offsetgroup": "수도권 광역환상배관망 육상구간 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=수도권 광역환상배관망 육상구간 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "승압설비 설치공사 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:445dfc",
                        "ysrc": "SmileJang:21:1bd2d6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:8b515b",
                        "showlegend": true,
                        "legendgroup": "승압설비 설치공사 설계 및 감리기술용역",
                        "offsetgroup": "승압설비 설치공사 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=승압설비 설치공사 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "상계, 군자 공급관리소 확장 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:151ebb",
                        "ysrc": "SmileJang:21:8eae16",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b40d43",
                        "showlegend": true,
                        "legendgroup": "상계, 군자 공급관리소 확장 설계 및 감리기술용역",
                        "offsetgroup": "상계, 군자 공급관리소 확장 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=상계, 군자 공급관리소 확장 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #8~10 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:aab363",
                        "ysrc": "SmileJang:21:4fa75d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:312fa6",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #8~10 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #8~10 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #8~10 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 #11~14 탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d4d62e",
                        "ysrc": "SmileJang:21:804b93",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2810fa",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 #11~14 탱크 설계 및 감리기술용역",
                        "offsetgroup": "평택생산기지 #11~14 탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 #11~14 탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 제2공장 실시설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:900b1e",
                        "ysrc": "SmileJang:21:b0b06b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ba53ca",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 제2공장 실시설계 및 감리기술용역",
                        "offsetgroup": "평택생산기지 제2공장 실시설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 제2공장 실시설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "수도권 매립지 CNG 충전소 건설공사",
                        "type": "bar",
                        "xsrc": "SmileJang:21:047fe0",
                        "ysrc": "SmileJang:21:534fe2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:f29602",
                        "showlegend": true,
                        "legendgroup": "수도권 매립지 CNG 충전소 건설공사",
                        "offsetgroup": "수도권 매립지 CNG 충전소 건설공사",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=수도권 매립지 CNG 충전소 건설공사<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LCNG/LNG 복합충전설비 설계 및 건설공사",
                        "type": "bar",
                        "xsrc": "SmileJang:21:76005d",
                        "ysrc": "SmileJang:21:8997c0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:fd83c3",
                        "showlegend": true,
                        "legendgroup": "LCNG/LNG 복합충전설비 설계 및 건설공사",
                        "offsetgroup": "LCNG/LNG 복합충전설비 설계 및 건설공사",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LCNG/LNG 복합충전설비 설계 및 건설공사<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "베트남) Phumy~Hochiminh간 공급배관건설공사 기술자문 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:fb18f3",
                        "ysrc": "SmileJang:21:17728c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e6cac2",
                        "showlegend": true,
                        "legendgroup": "베트남) Phumy~Hochiminh간 공급배관건설공사 기술자문 용역",
                        "offsetgroup": "베트남) Phumy~Hochiminh간 공급배관건설공사 기술자문 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=베트남) Phumy~Hochiminh간 공급배관건설공사 기술자문 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "구 강화대교 도시가스배관공사 설계기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c78702",
                        "ysrc": "SmileJang:21:1c7618",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6c20f2",
                        "showlegend": true,
                        "legendgroup": "구 강화대교 도시가스배관공사 설계기술용역",
                        "offsetgroup": "구 강화대교 도시가스배관공사 설계기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=구 강화대교 도시가스배관공사 설계기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "합정~충정간 동절기 압력저하에 대한 설비보강방안 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:286d9d",
                        "ysrc": "SmileJang:21:337b9f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:46645b",
                        "showlegend": true,
                        "legendgroup": "합정~충정간 동절기 압력저하에 대한 설비보강방안 용역",
                        "offsetgroup": "합정~충정간 동절기 압력저하에 대한 설비보강방안 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=합정~충정간 동절기 압력저하에 대한 설비보강방안 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME Demo Plant 개념 및 기본설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:980cd5",
                        "ysrc": "SmileJang:21:e24a7c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3447f2",
                        "showlegend": true,
                        "legendgroup": "DME Demo Plant 개념 및 기본설계용역",
                        "offsetgroup": "DME Demo Plant 개념 및 기본설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME Demo Plant 개념 및 기본설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "발전용 DME 공급설비 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1bd7e6",
                        "ysrc": "SmileJang:21:7bdaec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b18578",
                        "showlegend": true,
                        "legendgroup": "발전용 DME 공급설비 설계용역",
                        "offsetgroup": "발전용 DME 공급설비 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=발전용 DME 공급설비 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 저장탱크(200,000kl)개발 상세설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:47e16a",
                        "ysrc": "SmileJang:21:7ce484",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:432057",
                        "showlegend": true,
                        "legendgroup": "LNG 저장탱크(200,000kl)개발 상세설계",
                        "offsetgroup": "LNG 저장탱크(200,000kl)개발 상세설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 저장탱크(200,000kl)개발 상세설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME 사업 예비타당성조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2bb78e",
                        "ysrc": "SmileJang:21:cbbfed",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:18b187",
                        "showlegend": true,
                        "legendgroup": "DME 사업 예비타당성조사 용역",
                        "offsetgroup": "DME 사업 예비타당성조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME 사업 예비타당성조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "압축 천연가스내 오일함량 분석을 위한 Sampling Cryotrap 패키지설비 설계 및 제작",
                        "type": "bar",
                        "xsrc": "SmileJang:21:84d4e0",
                        "ysrc": "SmileJang:21:1dbd32",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:af78e0",
                        "showlegend": true,
                        "legendgroup": "압축 천연가스내 오일함량 분석을 위한 Sampling Cryotrap 패키지설비 설계 및 제작",
                        "offsetgroup": "압축 천연가스내 오일함량 분석을 위한 Sampling Cryotrap 패키지설비 설계 및 제작",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=압축 천연가스내 오일함량 분석을 위한 Sampling Cryotrap 패키지설비 설계 및 제작<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "제주지역 천연가스 공급 타당성 조사 자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:66f26f",
                        "ysrc": "SmileJang:21:34fa70",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1fe718",
                        "showlegend": true,
                        "legendgroup": "제주지역 천연가스 공급 타당성 조사 자문용역",
                        "offsetgroup": "제주지역 천연가스 공급 타당성 조사 자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=제주지역 천연가스 공급 타당성 조사 자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급관리소 이전을 위한 기초조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:451948",
                        "ysrc": "SmileJang:21:ea0848",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:cf2a8d",
                        "showlegend": true,
                        "legendgroup": "공급관리소 이전을 위한 기초조사 용역",
                        "offsetgroup": "공급관리소 이전을 위한 기초조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급관리소 이전을 위한 기초조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "군산관리소 Pig Station 개선공사 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c08b85",
                        "ysrc": "SmileJang:21:653783",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:664e86",
                        "showlegend": true,
                        "legendgroup": "군산관리소 Pig Station 개선공사 설계 및 감리기술용역",
                        "offsetgroup": "군산관리소 Pig Station 개선공사 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=군산관리소 Pig Station 개선공사 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급설비의 효과적 개선을 위한 기초조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:906f98",
                        "ysrc": "SmileJang:21:970953",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3d6b74",
                        "showlegend": true,
                        "legendgroup": "공급설비의 효과적 개선을 위한 기초조사 용역",
                        "offsetgroup": "공급설비의 효과적 개선을 위한 기초조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급설비의 효과적 개선을 위한 기초조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "PILOT 실험실 천연가스 공급배관 설계 및 감리용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b3e9d5",
                        "ysrc": "SmileJang:21:619efc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:0a78ac",
                        "showlegend": true,
                        "legendgroup": "PILOT 실험실 천연가스 공급배관 설계 및 감리용역",
                        "offsetgroup": "PILOT 실험실 천연가스 공급배관 설계 및 감리용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=PILOT 실험실 천연가스 공급배관 설계 및 감리용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Subcontract for Eng. & Supervision Services for the Kwangyang LNG Receiving T",
                        "type": "bar",
                        "xsrc": "SmileJang:21:ea06cf",
                        "ysrc": "SmileJang:21:1c38c7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:efe613",
                        "showlegend": true,
                        "legendgroup": "Subcontract for Eng. & Supervision Services for the Kwangyang LNG Receiving T",
                        "offsetgroup": "Subcontract for Eng. & Supervision Services for the Kwangyang LNG Receiving T",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=Subcontract for Eng. & Supervision Services for the Kwangyang LNG Receiving T<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "의정부~상계(장암고가교구간) 배관이설공사",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b05d77",
                        "ysrc": "SmileJang:21:265208",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1c2cd8",
                        "showlegend": true,
                        "legendgroup": "의정부~상계(장암고가교구간) 배관이설공사",
                        "offsetgroup": "의정부~상계(장암고가교구간) 배관이설공사",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=의정부~상계(장암고가교구간) 배관이설공사<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "외삼차량기지 배관이설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d5861d",
                        "ysrc": "SmileJang:21:b81043",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:c6a763",
                        "showlegend": true,
                        "legendgroup": "외삼차량기지 배관이설공사 설계용역",
                        "offsetgroup": "외삼차량기지 배관이설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=외삼차량기지 배관이설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "황간 철도건널목 개량공사 저촉배관 보호공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:94d2c8",
                        "ysrc": "SmileJang:21:8aec88",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2ad981",
                        "showlegend": true,
                        "legendgroup": "황간 철도건널목 개량공사 저촉배관 보호공사 설계용역",
                        "offsetgroup": "황간 철도건널목 개량공사 저촉배관 보호공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=황간 철도건널목 개량공사 저촉배관 보호공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공군부대(화성대) 관사 도시가스인입 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0c0154",
                        "ysrc": "SmileJang:21:a53610",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3104f0",
                        "showlegend": true,
                        "legendgroup": "공군부대(화성대) 관사 도시가스인입 설계용역",
                        "offsetgroup": "공군부대(화성대) 관사 도시가스인입 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공군부대(화성대) 관사 도시가스인입 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "강화 제2대교 도시가스배관 설치공사 설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:da1fb8",
                        "ysrc": "SmileJang:21:d56034",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:cd5aff",
                        "showlegend": true,
                        "legendgroup": "강화 제2대교 도시가스배관 설치공사 설계",
                        "offsetgroup": "강화 제2대교 도시가스배관 설치공사 설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=강화 제2대교 도시가스배관 설치공사 설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "노은지구 배관이설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b83334",
                        "ysrc": "SmileJang:21:f6f499",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1daeea",
                        "showlegend": true,
                        "legendgroup": "노은지구 배관이설공사 설계용역",
                        "offsetgroup": "노은지구 배관이설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=노은지구 배관이설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "천연가스 기술편람 발간 3단계 사업",
                        "type": "bar",
                        "xsrc": "SmileJang:21:f5a6b7",
                        "ysrc": "SmileJang:21:3d2e77",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:dbcb77",
                        "showlegend": true,
                        "legendgroup": "천연가스 기술편람 발간 3단계 사업",
                        "offsetgroup": "천연가스 기술편람 발간 3단계 사업",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=천연가스 기술편람 발간 3단계 사업<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "장제리 매설배관 보호공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e02ade",
                        "ysrc": "SmileJang:21:8e2b56",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9fbbb2",
                        "showlegend": true,
                        "legendgroup": "장제리 매설배관 보호공사 설계용역",
                        "offsetgroup": "장제리 매설배관 보호공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=장제리 매설배관 보호공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급관리소 도면표준화(건축,토목) 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:716b2a",
                        "ysrc": "SmileJang:21:7d8a4c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:bad268",
                        "showlegend": true,
                        "legendgroup": "공급관리소 도면표준화(건축,토목) 용역",
                        "offsetgroup": "공급관리소 도면표준화(건축,토목) 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급관리소 도면표준화(건축,토목) 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "가스공사 병행 광관로 건설공사 실시설계용역(용인~남양주)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:87d643",
                        "ysrc": "SmileJang:21:944718",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5c9bd2",
                        "showlegend": true,
                        "legendgroup": "가스공사 병행 광관로 건설공사 실시설계용역(용인~남양주)",
                        "offsetgroup": "가스공사 병행 광관로 건설공사 실시설계용역(용인~남양주)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=가스공사 병행 광관로 건설공사 실시설계용역(용인~남양주)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "도시가스 공급배관망 설계현황 조사용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:fa58f4",
                        "ysrc": "SmileJang:21:da5eb2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:81c108",
                        "showlegend": true,
                        "legendgroup": "도시가스 공급배관망 설계현황 조사용역",
                        "offsetgroup": "도시가스 공급배관망 설계현황 조사용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=도시가스 공급배관망 설계현황 조사용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "소애~합정(상암동)구간 배관이설 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:9fafc8",
                        "ysrc": "SmileJang:21:0a5a5e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3e54f8",
                        "showlegend": true,
                        "legendgroup": "소애~합정(상암동)구간 배관이설 설계용역",
                        "offsetgroup": "소애~합정(상암동)구간 배관이설 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=소애~합정(상암동)구간 배관이설 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "양산 B/V 제각공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0b5aae",
                        "ysrc": "SmileJang:21:3625a9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:679be5",
                        "showlegend": true,
                        "legendgroup": "양산 B/V 제각공사 설계용역",
                        "offsetgroup": "양산 B/V 제각공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=양산 B/V 제각공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "천연가스 기술편람 발간(2단계) 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:96460f",
                        "ysrc": "SmileJang:21:9eb6c1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:bcc745",
                        "showlegend": true,
                        "legendgroup": "천연가스 기술편람 발간(2단계) 용역",
                        "offsetgroup": "천연가스 기술편람 발간(2단계) 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=천연가스 기술편람 발간(2단계) 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "가스전 생산시스템 분석 및 효율적인 배관 승압 설비 연구방안",
                        "type": "bar",
                        "xsrc": "SmileJang:21:46b08e",
                        "ysrc": "SmileJang:21:47a619",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:22dfb5",
                        "showlegend": true,
                        "legendgroup": "가스전 생산시스템 분석 및 효율적인 배관 승압 설비 연구방안",
                        "offsetgroup": "가스전 생산시스템 분석 및 효율적인 배관 승압 설비 연구방안",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=가스전 생산시스템 분석 및 효율적인 배관 승압 설비 연구방안<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2000년 배관이설 및 공급설비보강 설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:13fb77",
                        "ysrc": "SmileJang:21:31e398",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:09f2d9",
                        "showlegend": true,
                        "legendgroup": "2000년 배관이설 및 공급설비보강 설계 용역",
                        "offsetgroup": "2000년 배관이설 및 공급설비보강 설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2000년 배관이설 및 공급설비보강 설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "저압용 인텔리전트 피그 개발 및 적용을 위한 타당성 조사용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7f7596",
                        "ysrc": "SmileJang:21:d0f8b1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:d4978d",
                        "showlegend": true,
                        "legendgroup": "저압용 인텔리전트 피그 개발 및 적용을 위한 타당성 조사용역",
                        "offsetgroup": "저압용 인텔리전트 피그 개발 및 적용을 위한 타당성 조사용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=저압용 인텔리전트 피그 개발 및 적용을 위한 타당성 조사용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "9% Ni형 상용 LNG저장탱크(158,100kl , 1기) 국산화 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:902a7d",
                        "ysrc": "SmileJang:21:161752",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4b368a",
                        "showlegend": true,
                        "legendgroup": "9% Ni형 상용 LNG저장탱크(158,100kl , 1기) 국산화 설계용역",
                        "offsetgroup": "9% Ni형 상용 LNG저장탱크(158,100kl , 1기) 국산화 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=9% Ni형 상용 LNG저장탱크(158,100kl , 1기) 국산화 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Compact형 공급관리소 기술 표준화 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e016d2",
                        "ysrc": "SmileJang:21:51c4d4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:0d9d2a",
                        "showlegend": true,
                        "legendgroup": "Compact형 공급관리소 기술 표준화 용역",
                        "offsetgroup": "Compact형 공급관리소 기술 표준화 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=Compact형 공급관리소 기술 표준화 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "멕시코) MADERO인수기지 토목설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:019332",
                        "ysrc": "SmileJang:21:d5a113",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ac628c",
                        "showlegend": true,
                        "legendgroup": "멕시코) MADERO인수기지 토목설계 용역",
                        "offsetgroup": "멕시코) MADERO인수기지 토목설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=멕시코) MADERO인수기지 토목설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "천연가스 기술편람(1단계-천연가스 일반 및 공급분야) 발간 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b8aade",
                        "ysrc": "SmileJang:21:206538",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:15cb01",
                        "showlegend": true,
                        "legendgroup": "천연가스 기술편람(1단계-천연가스 일반 및 공급분야) 발간 용역",
                        "offsetgroup": "천연가스 기술편람(1단계-천연가스 일반 및 공급분야) 발간 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=천연가스 기술편람(1단계-천연가스 일반 및 공급분야) 발간 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 저장탱크 국산화 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a9bab2",
                        "ysrc": "SmileJang:21:f355fa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:230dde",
                        "showlegend": true,
                        "legendgroup": "LNG 저장탱크 국산화 설계용역",
                        "offsetgroup": "LNG 저장탱크 국산화 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 저장탱크 국산화 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "화명~학장(경전철)구간 배관이설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:67c6b1",
                        "ysrc": "SmileJang:21:9f1c6a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9b7665",
                        "showlegend": true,
                        "legendgroup": "화명~학장(경전철)구간 배관이설공사 설계용역",
                        "offsetgroup": "화명~학장(경전철)구간 배관이설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=화명~학장(경전철)구간 배관이설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급관리소 도면 표준화 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:5c59b2",
                        "ysrc": "SmileJang:21:a070a1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:f451b8",
                        "showlegend": true,
                        "legendgroup": "공급관리소 도면 표준화 용역",
                        "offsetgroup": "공급관리소 도면 표준화 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급관리소 도면 표준화 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "천연가스사업시설계획 및 프로그램개발연구용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:aa6c57",
                        "ysrc": "SmileJang:21:14407d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9aa8a7",
                        "showlegend": true,
                        "legendgroup": "천연가스사업시설계획 및 프로그램개발연구용역",
                        "offsetgroup": "천연가스사업시설계획 및 프로그램개발연구용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=천연가스사업시설계획 및 프로그램개발연구용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "양산 I.C.D 배관이설 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c76e43",
                        "ysrc": "SmileJang:21:5a28a8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9da068",
                        "showlegend": true,
                        "legendgroup": "양산 I.C.D 배관이설 설계용역",
                        "offsetgroup": "양산 I.C.D 배관이설 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=양산 I.C.D 배관이설 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급관리소 도면표준화 시범구축용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:ec271a",
                        "ysrc": "SmileJang:21:664099",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:909d49",
                        "showlegend": true,
                        "legendgroup": "공급관리소 도면표준화 시범구축용역",
                        "offsetgroup": "공급관리소 도면표준화 시범구축용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급관리소 도면표준화 시범구축용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "제2차 검교정 설비설계 및 시공감리 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:9ef58b",
                        "ysrc": "SmileJang:21:51c8c4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7c93b5",
                        "showlegend": true,
                        "legendgroup": "제2차 검교정 설비설계 및 시공감리 기술용역",
                        "offsetgroup": "제2차 검교정 설비설계 및 시공감리 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=제2차 검교정 설비설계 및 시공감리 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "석수기지 시설물 이전설치공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:891232",
                        "ysrc": "SmileJang:21:a1aba9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2a510e",
                        "showlegend": true,
                        "legendgroup": "석수기지 시설물 이전설치공사 설계용역",
                        "offsetgroup": "석수기지 시설물 이전설치공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=석수기지 시설물 이전설치공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "대체유량계 설치설계 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0624a0",
                        "ysrc": "SmileJang:21:b53cd0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4a73cc",
                        "showlegend": true,
                        "legendgroup": "대체유량계 설치설계 기술용역",
                        "offsetgroup": "대체유량계 설치설계 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=대체유량계 설치설계 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급관리소 도면 전산화용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b57351",
                        "ysrc": "SmileJang:21:040e52",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:040951",
                        "showlegend": true,
                        "legendgroup": "공급관리소 도면 전산화용역",
                        "offsetgroup": "공급관리소 도면 전산화용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급관리소 도면 전산화용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "배관이설 및 공급설비보강 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:5094f0",
                        "ysrc": "SmileJang:21:56f153",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:8dd524",
                        "showlegend": true,
                        "legendgroup": "배관이설 및 공급설비보강 기술용역",
                        "offsetgroup": "배관이설 및 공급설비보강 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=배관이설 및 공급설비보강 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천기지  및 통영기지 설계 기술인력 지원용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:596748",
                        "ysrc": "SmileJang:21:62bb68",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:363a3d",
                        "showlegend": true,
                        "legendgroup": "인천기지  및 통영기지 설계 기술인력 지원용역",
                        "offsetgroup": "인천기지  및 통영기지 설계 기술인력 지원용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천기지  및 통영기지 설계 기술인력 지원용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "저압가스 처리 타당성 조사",
                        "type": "bar",
                        "xsrc": "SmileJang:21:413d1f",
                        "ysrc": "SmileJang:21:da368e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:54e9ab",
                        "showlegend": true,
                        "legendgroup": "저압가스 처리 타당성 조사",
                        "offsetgroup": "저압가스 처리 타당성 조사",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=저압가스 처리 타당성 조사<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME Demo Plant 실시설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:f054f0",
                        "ysrc": "SmileJang:21:fbe4f6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e3ba03",
                        "showlegend": true,
                        "legendgroup": "DME Demo Plant 실시설계 및 감리기술용역",
                        "offsetgroup": "DME Demo Plant 실시설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME Demo Plant 실시설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #13,14 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b9dbaa",
                        "ysrc": "SmileJang:21:b50928",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:c48399",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #13,14 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #13,14 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #13,14 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "나주·비아관리소 확장공사 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b4ecf2",
                        "ysrc": "SmileJang:21:559956",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:506a4b",
                        "showlegend": true,
                        "legendgroup": "나주·비아관리소 확장공사 설계 및 감리기술용역",
                        "offsetgroup": "나주·비아관리소 확장공사 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=나주·비아관리소 확장공사 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 전력계통 해석 및 계전설비 정비용 기술도서 갱신용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:54fb56",
                        "ysrc": "SmileJang:21:dff641",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b8523f",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 전력계통 해석 및 계전설비 정비용 기술도서 갱신용역",
                        "offsetgroup": "평택생산기지 전력계통 해석 및 계전설비 정비용 기술도서 갱신용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 전력계통 해석 및 계전설비 정비용 기술도서 갱신용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #11,12 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:be9438",
                        "ysrc": "SmileJang:21:7227b9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:10c719",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #11,12 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #11,12 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #11,12 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 제2공장 1단계 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:dc6a88",
                        "ysrc": "SmileJang:21:845c96",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:55ca52",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 제2공장 1단계 감리기술용역",
                        "offsetgroup": "평택생산기지 제2공장 1단계 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 제2공장 1단계 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LCNG충전설비 (MOTHER STATION) 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3baa97",
                        "ysrc": "SmileJang:21:8e7921",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:d36477",
                        "showlegend": true,
                        "legendgroup": "LCNG충전설비 (MOTHER STATION) 건설공사 설계용역",
                        "offsetgroup": "LCNG충전설비 (MOTHER STATION) 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LCNG충전설비 (MOTHER STATION) 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "러시아) 사할린 승압기지(BS2) 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:4560e4",
                        "ysrc": "SmileJang:21:4177a8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4320e6",
                        "showlegend": true,
                        "legendgroup": "러시아) 사할린 승압기지(BS2) 건설공사 설계용역",
                        "offsetgroup": "러시아) 사할린 승압기지(BS2) 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=러시아) 사할린 승압기지(BS2) 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "수소 스테이션 유틸리티 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:eda59e",
                        "ysrc": "SmileJang:21:b6ef63",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:22ecd6",
                        "showlegend": true,
                        "legendgroup": "수소 스테이션 유틸리티 설계용역",
                        "offsetgroup": "수소 스테이션 유틸리티 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=수소 스테이션 유틸리티 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #6,7 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:74f6c2",
                        "ysrc": "SmileJang:21:ee9c8a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:135f18",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #6,7 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #6,7 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #6,7 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 #15~17 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e7b387",
                        "ysrc": "SmileJang:21:8dfff4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:616781",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 #15~17 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "평택생산기지 #15~17 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 #15~17 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 #18~21 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d2236b",
                        "ysrc": "SmileJang:21:b524f7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:44340c",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 #18~21 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "평택생산기지 #18~21 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 #18~21 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "외동·홍천관리소 건설공사 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0e2231",
                        "ysrc": "SmileJang:21:312e9d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ddf047",
                        "showlegend": true,
                        "legendgroup": "외동·홍천관리소 건설공사 설계 및 감리기술용역",
                        "offsetgroup": "외동·홍천관리소 건설공사 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=외동·홍천관리소 건설공사 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 기화설비 건설계획 자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a63973",
                        "ysrc": "SmileJang:21:f7825d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b6ed58",
                        "showlegend": true,
                        "legendgroup": "평택기지 기화설비 건설계획 자문용역",
                        "offsetgroup": "평택기지 기화설비 건설계획 자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 기화설비 건설계획 자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME 상용 Plant 개념설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a1a0e4",
                        "ysrc": "SmileJang:21:263893",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6b03fe",
                        "showlegend": true,
                        "legendgroup": "DME 상용 Plant 개념설계 용역",
                        "offsetgroup": "DME 상용 Plant 개념설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME 상용 Plant 개념설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택생산기지 #22,23 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:383fb2",
                        "ysrc": "SmileJang:21:d1b431",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:309e2a",
                        "showlegend": true,
                        "legendgroup": "평택생산기지 #22,23 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "평택생산기지 #22,23 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택생산기지 #22,23 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #17 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:144f91",
                        "ysrc": "SmileJang:21:5483af",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6aeb54",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #17 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #17 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #17 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "칠서관리소 공급관리소 및 공급배관 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:f4528f",
                        "ysrc": "SmileJang:21:b3497a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:62c904",
                        "showlegend": true,
                        "legendgroup": "칠서관리소 공급관리소 및 공급배관 건설공사 설계용역",
                        "offsetgroup": "칠서관리소 공급관리소 및 공급배관 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=칠서관리소 공급관리소 및 공급배관 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "태국) PTT LNG기지 LNG 저장탱크 (173,000kl , 2기) 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c31c55",
                        "ysrc": "SmileJang:21:36c4b1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9fc174",
                        "showlegend": true,
                        "legendgroup": "태국) PTT LNG기지 LNG 저장탱크 (173,000kl , 2기) 설계용역",
                        "offsetgroup": "태국) PTT LNG기지 LNG 저장탱크 (173,000kl , 2기) 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=태국) PTT LNG기지 LNG 저장탱크 (173,000kl , 2기) 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME연료공급설비 실시설계 및 인허가 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:86c916",
                        "ysrc": "SmileJang:21:4d45ef",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:812cb7",
                        "showlegend": true,
                        "legendgroup": "DME연료공급설비 실시설계 및 인허가 용역",
                        "offsetgroup": "DME연료공급설비 실시설계 및 인허가 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME연료공급설비 실시설계 및 인허가 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "멕시코) 만사니요기지 LNG 저장탱크 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e22144",
                        "ysrc": "SmileJang:21:ff1cc3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:a18645",
                        "showlegend": true,
                        "legendgroup": "멕시코) 만사니요기지 LNG 저장탱크 설계용역",
                        "offsetgroup": "멕시코) 만사니요기지 LNG 저장탱크 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=멕시코) 만사니요기지 LNG 저장탱크 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "소애관리소 가스방산설비 정밀안전진단 및 위험성평가 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:34f886",
                        "ysrc": "SmileJang:21:864c0f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4b5dda",
                        "showlegend": true,
                        "legendgroup": "소애관리소 가스방산설비 정밀안전진단 및 위험성평가 기술용역",
                        "offsetgroup": "소애관리소 가스방산설비 정밀안전진단 및 위험성평가 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=소애관리소 가스방산설비 정밀안전진단 및 위험성평가 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "삼척생산기지 #1~4 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:003814",
                        "ysrc": "SmileJang:21:0b1382",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:daf7c3",
                        "showlegend": true,
                        "legendgroup": "삼척생산기지 #1~4 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "삼척생산기지 #1~4 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=삼척생산기지 #1~4 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "싱가폴) LNG저장탱크 Design Competition 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1702de",
                        "ysrc": "SmileJang:21:4bc7f7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:377fdd",
                        "showlegend": true,
                        "legendgroup": "싱가폴) LNG저장탱크 Design Competition 설계용역",
                        "offsetgroup": "싱가폴) LNG저장탱크 Design Competition 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=싱가폴) LNG저장탱크 Design Competition 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "삼척생산기지 #1단계 실시설계 및 감리용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:018f33",
                        "ysrc": "SmileJang:21:e151cd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7671f8",
                        "showlegend": true,
                        "legendgroup": "삼척생산기지 #1단계 실시설계 및 감리용역",
                        "offsetgroup": "삼척생산기지 #1단계 실시설계 및 감리용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=삼척생산기지 #1단계 실시설계 및 감리용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME 상용플랜트 기초설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a005bf",
                        "ysrc": "SmileJang:21:e6c7c0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:70e227",
                        "showlegend": true,
                        "legendgroup": "DME 상용플랜트 기초설계용역",
                        "offsetgroup": "DME 상용플랜트 기초설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME 상용플랜트 기초설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 #15,16 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7b3861",
                        "ysrc": "SmileJang:21:b6c911",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:188d4e",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 #15,16 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 #15,16 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 #15,16 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "통영생산기지 실시설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:9a143d",
                        "ysrc": "SmileJang:21:85a9ce",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:164167",
                        "showlegend": true,
                        "legendgroup": "통영생산기지 실시설계 및 감리기술용역",
                        "offsetgroup": "통영생산기지 실시설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=통영생산기지 실시설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "공급설비 모의훈련 실습장 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d4304a",
                        "ysrc": "SmileJang:21:731cd0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:fd88a4",
                        "showlegend": true,
                        "legendgroup": "공급설비 모의훈련 실습장 설계용역",
                        "offsetgroup": "공급설비 모의훈련 실습장 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=공급설비 모의훈련 실습장 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "신공항공급배관 및 일도~경서 환상배관 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:474c6b",
                        "ysrc": "SmileJang:21:68d699",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:c16e71",
                        "showlegend": true,
                        "legendgroup": "신공항공급배관 및 일도~경서 환상배관 건설공사 설계용역",
                        "offsetgroup": "신공항공급배관 및 일도~경서 환상배관 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=신공항공급배관 및 일도~경서 환상배관 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "한화복합 공급배관 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d72063",
                        "ysrc": "SmileJang:21:77473d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:977460",
                        "showlegend": true,
                        "legendgroup": "한화복합 공급배관 건설공사 설계용역",
                        "offsetgroup": "한화복합 공급배관 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=한화복합 공급배관 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "부산복합화력 공급배관 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:997159",
                        "ysrc": "SmileJang:21:082eaf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:76389f",
                        "showlegend": true,
                        "legendgroup": "부산복합화력 공급배관 건설공사 설계용역",
                        "offsetgroup": "부산복합화력 공급배관 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=부산복합화력 공급배관 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "광명발전소) 방산탑 설치공사 설계기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2c29ca",
                        "ysrc": "SmileJang:21:441a6a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:a1b0fc",
                        "showlegend": true,
                        "legendgroup": "광명발전소) 방산탑 설치공사 설계기술용역",
                        "offsetgroup": "광명발전소) 방산탑 설치공사 설계기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=광명발전소) 방산탑 설치공사 설계기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "포항 LCNG 충전소 비상공급설비 변경기술검토 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3fb5e9",
                        "ysrc": "SmileJang:21:3971d4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:62f932",
                        "showlegend": true,
                        "legendgroup": "포항 LCNG 충전소 비상공급설비 변경기술검토 용역",
                        "offsetgroup": "포항 LCNG 충전소 비상공급설비 변경기술검토 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=포항 LCNG 충전소 비상공급설비 변경기술검토 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "DME 상용화 플랜트 기본설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c98006",
                        "ysrc": "SmileJang:21:5f3c0e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7cad22",
                        "showlegend": true,
                        "legendgroup": "DME 상용화 플랜트 기본설계 용역",
                        "offsetgroup": "DME 상용화 플랜트 기본설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=DME 상용화 플랜트 기본설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "GTL Pilot 플랜트 실시설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7b1c70",
                        "ysrc": "SmileJang:21:1eff61",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:662033",
                        "showlegend": true,
                        "legendgroup": "GTL Pilot 플랜트 실시설계용역",
                        "offsetgroup": "GTL Pilot 플랜트 실시설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=GTL Pilot 플랜트 실시설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "600Nm3/hr급 CBM 생산·증진 및 포집 Demo Plant 기초설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0a164f",
                        "ysrc": "SmileJang:21:41f541",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9102cb",
                        "showlegend": true,
                        "legendgroup": "600Nm3/hr급 CBM 생산·증진 및 포집 Demo Plant 기초설계용역",
                        "offsetgroup": "600Nm3/hr급 CBM 생산·증진 및 포집 Demo Plant 기초설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=600Nm3/hr급 CBM 생산·증진 및 포집 Demo Plant 기초설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "해수가열기 국산화 개발 부대공사 설계 기술자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d022e4",
                        "ysrc": "SmileJang:21:f60080",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:661a28",
                        "showlegend": true,
                        "legendgroup": "해수가열기 국산화 개발 부대공사 설계 기술자문용역",
                        "offsetgroup": "해수가열기 국산화 개발 부대공사 설계 기술자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=해수가열기 국산화 개발 부대공사 설계 기술자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Small LNG터미날 / Power Plant 개발설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1d001d",
                        "ysrc": "SmileJang:21:d9eedb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:109fb0",
                        "showlegend": true,
                        "legendgroup": "Small LNG터미날 / Power Plant 개발설계 용역",
                        "offsetgroup": "Small LNG터미날 / Power Plant 개발설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=Small LNG터미날 / Power Plant 개발설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "생산기지 계량설비 공정검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:69f918",
                        "ysrc": "SmileJang:21:a64f53",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:67c428",
                        "showlegend": true,
                        "legendgroup": "생산기지 계량설비 공정검토용역",
                        "offsetgroup": "생산기지 계량설비 공정검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=생산기지 계량설비 공정검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "상용급 CO2 Membrane 분리공정 기초설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:269acc",
                        "ysrc": "SmileJang:21:ff7d3a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4e1c37",
                        "showlegend": true,
                        "legendgroup": "상용급 CO2 Membrane 분리공정 기초설계용역",
                        "offsetgroup": "상용급 CO2 Membrane 분리공정 기초설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=상용급 CO2 Membrane 분리공정 기초설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "HCNG용 수소충전소 증설 및 시스템변경 기술검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:fbfc5f",
                        "ysrc": "SmileJang:21:dd45b5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5d8c2e",
                        "showlegend": true,
                        "legendgroup": "HCNG용 수소충전소 증설 및 시스템변경 기술검토용역",
                        "offsetgroup": "HCNG용 수소충전소 증설 및 시스템변경 기술검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=HCNG용 수소충전소 증설 및 시스템변경 기술검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "수도권 도심지 공급배관망 감압운영 타당성조사용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:839642",
                        "ysrc": "SmileJang:21:7723d3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2392b0",
                        "showlegend": true,
                        "legendgroup": "수도권 도심지 공급배관망 감압운영 타당성조사용역",
                        "offsetgroup": "수도권 도심지 공급배관망 감압운영 타당성조사용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=수도권 도심지 공급배관망 감압운영 타당성조사용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "미공급지역 공급배관 건설공사 타당성검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d514f5",
                        "ysrc": "SmileJang:21:f140e2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:8dcf4c",
                        "showlegend": true,
                        "legendgroup": "미공급지역 공급배관 건설공사 타당성검토용역",
                        "offsetgroup": "미공급지역 공급배관 건설공사 타당성검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=미공급지역 공급배관 건설공사 타당성검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "마다가스카르) 암모니아 터미널 및 저장탱크(33,000kl ,1기) 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:4a4419",
                        "ysrc": "SmileJang:21:fab4de",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1ad72b",
                        "showlegend": true,
                        "legendgroup": "마다가스카르) 암모니아 터미널 및 저장탱크(33,000kl ,1기) 설계용역",
                        "offsetgroup": "마다가스카르) 암모니아 터미널 및 저장탱크(33,000kl ,1기) 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=마다가스카르) 암모니아 터미널 및 저장탱크(33,000kl ,1기) 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "싱가폴) LNG터미날  LNG 저장탱크(197,300kl , 3기) 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:4a095a",
                        "ysrc": "SmileJang:21:5dbdb7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1d7f6f",
                        "showlegend": true,
                        "legendgroup": "싱가폴) LNG터미날  LNG 저장탱크(197,300kl , 3기) 설계용역",
                        "offsetgroup": "싱가폴) LNG터미날  LNG 저장탱크(197,300kl , 3기) 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=싱가폴) LNG터미날  LNG 저장탱크(197,300kl , 3기) 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "GS건설) 대산 LPG 터미널 냉동탱크 기초설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:aa3000",
                        "ysrc": "SmileJang:21:9ee322",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:0cc1a2",
                        "showlegend": true,
                        "legendgroup": "GS건설) 대산 LPG 터미널 냉동탱크 기초설계용역",
                        "offsetgroup": "GS건설) 대산 LPG 터미널 냉동탱크 기초설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=GS건설) 대산 LPG 터미널 냉동탱크 기초설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "POSCO) 광양 LNG 저장탱크 #1,2,4 호기 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1b020a",
                        "ysrc": "SmileJang:21:f2ef1e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9d7546",
                        "showlegend": true,
                        "legendgroup": "POSCO) 광양 LNG 저장탱크 #1,2,4 호기 설계용역",
                        "offsetgroup": "POSCO) 광양 LNG 저장탱크 #1,2,4 호기 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=POSCO) 광양 LNG 저장탱크 #1,2,4 호기 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천 HCNG 충전설비 실시설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2bd654",
                        "ysrc": "SmileJang:21:625339",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:54b9cf",
                        "showlegend": true,
                        "legendgroup": "인천 HCNG 충전설비 실시설계용역",
                        "offsetgroup": "인천 HCNG 충전설비 실시설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천 HCNG 충전설비 실시설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG터미날) 생산기지  #1단계 사업 PF 기술자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:96ae80",
                        "ysrc": "SmileJang:21:3d7b6a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:799653",
                        "showlegend": true,
                        "legendgroup": "보령 LNG터미날) 생산기지  #1단계 사업 PF 기술자문용역",
                        "offsetgroup": "보령 LNG터미날) 생산기지  #1단계 사업 PF 기술자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG터미날) 생산기지  #1단계 사업 PF 기술자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "태국  PTT LNG 저장탱크 용도변경 사업 타당성조사 기술자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:72de68",
                        "ysrc": "SmileJang:21:6ca31f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1d6399",
                        "showlegend": true,
                        "legendgroup": "태국  PTT LNG 저장탱크 용도변경 사업 타당성조사 기술자문용역",
                        "offsetgroup": "태국  PTT LNG 저장탱크 용도변경 사업 타당성조사 기술자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=태국  PTT LNG 저장탱크 용도변경 사업 타당성조사 기술자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "서해권 계량설비 개선공사 실시설계 및 감리용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3f7076",
                        "ysrc": "SmileJang:21:00007b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:19e04b",
                        "showlegend": true,
                        "legendgroup": "서해권 계량설비 개선공사 실시설계 및 감리용역",
                        "offsetgroup": "서해권 계량설비 개선공사 실시설계 및 감리용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=서해권 계량설비 개선공사 실시설계 및 감리용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "ABB코리아) 인천생산기지 전력감시 및 제어시스템(ESCS) 전력계통해석 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0f8a73",
                        "ysrc": "SmileJang:21:439d0d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b5471a",
                        "showlegend": true,
                        "legendgroup": "ABB코리아) 인천생산기지 전력감시 및 제어시스템(ESCS) 전력계통해석 용역",
                        "offsetgroup": "ABB코리아) 인천생산기지 전력감시 및 제어시스템(ESCS) 전력계통해석 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=ABB코리아) 인천생산기지 전력감시 및 제어시스템(ESCS) 전력계통해석 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "발전용 천연가스 고압공급방안 검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b9a0b0",
                        "ysrc": "SmileJang:21:e3a97e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:fa5ab1",
                        "showlegend": true,
                        "legendgroup": "발전용 천연가스 고압공급방안 검토용역",
                        "offsetgroup": "발전용 천연가스 고압공급방안 검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=발전용 천연가스 고압공급방안 검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "삼척생산기지 #10~12탱크 설계 현장지원 및 AS-BUILT 도면작성 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:030415",
                        "ysrc": "SmileJang:21:e6457f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9eba70",
                        "showlegend": true,
                        "legendgroup": "삼척생산기지 #10~12탱크 설계 현장지원 및 AS-BUILT 도면작성 용역",
                        "offsetgroup": "삼척생산기지 #10~12탱크 설계 현장지원 및 AS-BUILT 도면작성 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=삼척생산기지 #10~12탱크 설계 현장지원 및 AS-BUILT 도면작성 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "하남미사 집단에너지 및 신평택 복합화력 공급관리소 및 공급배관  설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0516f8",
                        "ysrc": "SmileJang:21:92818e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:30e88b",
                        "showlegend": true,
                        "legendgroup": "하남미사 집단에너지 및 신평택 복합화력 공급관리소 및 공급배관  설계 및 감리기술용역",
                        "offsetgroup": "하남미사 집단에너지 및 신평택 복합화력 공급관리소 및 공급배관  설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=하남미사 집단에너지 및 신평택 복합화력 공급관리소 및 공급배관  설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "제2단계 강원권 미공급지역 천연가스 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:26ce3a",
                        "ysrc": "SmileJang:21:6a9b48",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:77ce28",
                        "showlegend": true,
                        "legendgroup": "제2단계 강원권 미공급지역 천연가스 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "offsetgroup": "제2단계 강원권 미공급지역 천연가스 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=제2단계 강원권 미공급지역 천연가스 공급관리소 및 공급배관 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "오산세교 집단에너지 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:88a576",
                        "ysrc": "SmileJang:21:c1c183",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:41cbde",
                        "showlegend": true,
                        "legendgroup": "오산세교 집단에너지 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "offsetgroup": "오산세교 집단에너지 공급관리소 및 공급배관 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=오산세교 집단에너지 공급관리소 및 공급배관 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "장문 천연가스 발전소 LNG Supply 상세설계 및 인허가용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1d8cc5",
                        "ysrc": "SmileJang:21:d1f08c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6f544b",
                        "showlegend": true,
                        "legendgroup": "장문 천연가스 발전소 LNG Supply 상세설계 및 인허가용역",
                        "offsetgroup": "장문 천연가스 발전소 LNG Supply 상세설계 및 인허가용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=장문 천연가스 발전소 LNG Supply 상세설계 및 인허가용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "쿠웨이트  KNPC LPG저장탱크 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:cf6fe5",
                        "ysrc": "SmileJang:21:208102",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6691e3",
                        "showlegend": true,
                        "legendgroup": "쿠웨이트  KNPC LPG저장탱크 설계용역",
                        "offsetgroup": "쿠웨이트  KNPC LPG저장탱크 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=쿠웨이트  KNPC LPG저장탱크 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "사우디) Cryogenic Tank Farm Ethylene(30,000kl , 1기) 및 Propylene저장탱크( 12,000kl,1기) 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:721d46",
                        "ysrc": "SmileJang:21:251d28",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:661c9b",
                        "showlegend": true,
                        "legendgroup": "사우디) Cryogenic Tank Farm Ethylene(30,000kl , 1기) 및 Propylene저장탱크( 12,000kl,1기) 설계용역",
                        "offsetgroup": "사우디) Cryogenic Tank Farm Ethylene(30,000kl , 1기) 및 Propylene저장탱크( 12,000kl,1기) 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=사우디) Cryogenic Tank Farm Ethylene(30,000kl , 1기) 및 Propylene저장탱크( 12,000kl,1기) 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널  LNG 저장탱크(#1~4) 설계 및 감리 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:35900a",
                        "ysrc": "SmileJang:21:b7720e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:0c3c6f",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널  LNG 저장탱크(#1~4) 설계 및 감리 용역",
                        "offsetgroup": "보령 LNG 터미널  LNG 저장탱크(#1~4) 설계 및 감리 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널  LNG 저장탱크(#1~4) 설계 및 감리 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "중국) 항조우 LNG 저장탱크(11,700kl , 1기) 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:638777",
                        "ysrc": "SmileJang:21:ded3e5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:dddab8",
                        "showlegend": true,
                        "legendgroup": "중국) 항조우 LNG 저장탱크(11,700kl , 1기) 설계용역",
                        "offsetgroup": "중국) 항조우 LNG 저장탱크(11,700kl , 1기) 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=중국) 항조우 LNG 저장탱크(11,700kl , 1기) 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "사우디)  RABIGH Jetty#2 상부구조물 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0a6c08",
                        "ysrc": "SmileJang:21:943dd3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:678f0c",
                        "showlegend": true,
                        "legendgroup": "사우디)  RABIGH Jetty#2 상부구조물 설계용역",
                        "offsetgroup": "사우디)  RABIGH Jetty#2 상부구조물 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=사우디)  RABIGH Jetty#2 상부구조물 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널) 생산기지 1단계 설계 감리용역(PMC)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b7e830",
                        "ysrc": "SmileJang:21:b67bfe",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:fcea79",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널) 생산기지 1단계 설계 감리용역(PMC)",
                        "offsetgroup": "보령 LNG 터미널) 생산기지 1단계 설계 감리용역(PMC)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널) 생산기지 1단계 설계 감리용역(PMC)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천생산기지 생산공정 진단 및 분리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0feab3",
                        "ysrc": "SmileJang:21:0e3121",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:33d46f",
                        "showlegend": true,
                        "legendgroup": "인천생산기지 생산공정 진단 및 분리기술용역",
                        "offsetgroup": "인천생산기지 생산공정 진단 및 분리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천생산기지 생산공정 진단 및 분리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "싱가포르 SLNG 3차 확장 탱크 상세설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:24db8d",
                        "ysrc": "SmileJang:21:90df7d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:541ad1",
                        "showlegend": true,
                        "legendgroup": "싱가포르 SLNG 3차 확장 탱크 상세설계용역",
                        "offsetgroup": "싱가포르 SLNG 3차 확장 탱크 상세설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=싱가포르 SLNG 3차 확장 탱크 상세설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천기지 Ⅳ지구 #21~23 LNG저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:092513",
                        "ysrc": "SmileJang:21:7ce96c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3b632d",
                        "showlegend": true,
                        "legendgroup": "인천기지 Ⅳ지구 #21~23 LNG저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "인천기지 Ⅳ지구 #21~23 LNG저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천기지 Ⅳ지구 #21~23 LNG저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LPG Tank 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:eeb930",
                        "ysrc": "SmileJang:21:1b1fdd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:05c1de",
                        "showlegend": true,
                        "legendgroup": "보령 LPG Tank 설계용역",
                        "offsetgroup": "보령 LPG Tank 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LPG Tank 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "중부가스) 부여 백제교 LNG배관 매달기 공사 설계 및 교량(상부) 구조해석 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:71850b",
                        "ysrc": "SmileJang:21:6feee0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7990ff",
                        "showlegend": true,
                        "legendgroup": "중부가스) 부여 백제교 LNG배관 매달기 공사 설계 및 교량(상부) 구조해석 설계용역",
                        "offsetgroup": "중부가스) 부여 백제교 LNG배관 매달기 공사 설계 및 교량(상부) 구조해석 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=중부가스) 부여 백제교 LNG배관 매달기 공사 설계 및 교량(상부) 구조해석 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "대산기지 프로판 탱크 기초설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d93737",
                        "ysrc": "SmileJang:21:8e4ee5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:79fc5f",
                        "showlegend": true,
                        "legendgroup": "대산기지 프로판 탱크 기초설계용역",
                        "offsetgroup": "대산기지 프로판 탱크 기초설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=대산기지 프로판 탱크 기초설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 선박 연료가스공급시스템 FMECA 및 기술컨설팅 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:cc50a5",
                        "ysrc": "SmileJang:21:fab489",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:bfea2b",
                        "showlegend": true,
                        "legendgroup": "LNG 선박 연료가스공급시스템 FMECA 및 기술컨설팅 용역",
                        "offsetgroup": "LNG 선박 연료가스공급시스템 FMECA 및 기술컨설팅 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 선박 연료가스공급시스템 FMECA 및 기술컨설팅 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "GS건설) 당진발전소#4호기 천연가스 공급관리소 및 공급배관 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:095646",
                        "ysrc": "SmileJang:21:5d7ddf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:05cea6",
                        "showlegend": true,
                        "legendgroup": "GS건설) 당진발전소#4호기 천연가스 공급관리소 및 공급배관 설계용역",
                        "offsetgroup": "GS건설) 당진발전소#4호기 천연가스 공급관리소 및 공급배관 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=GS건설) 당진발전소#4호기 천연가스 공급관리소 및 공급배관 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "제주애월기지 저장탱크 설계 및 건설사업관리 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:8e36f5",
                        "ysrc": "SmileJang:21:047800",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e43e1f",
                        "showlegend": true,
                        "legendgroup": "제주애월기지 저장탱크 설계 및 건설사업관리 용역",
                        "offsetgroup": "제주애월기지 저장탱크 설계 및 건설사업관리 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=제주애월기지 저장탱크 설계 및 건설사업관리 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 공정진단 및 터미널분리 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:f15f28",
                        "ysrc": "SmileJang:21:8bb756",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e1049a",
                        "showlegend": true,
                        "legendgroup": "평택기지 공정진단 및 터미널분리 기술용역",
                        "offsetgroup": "평택기지 공정진단 및 터미널분리 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 공정진단 및 터미널분리 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천기지 터미널분리 실시설계 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:6e5a8d",
                        "ysrc": "SmileJang:21:88b49a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:210540",
                        "showlegend": true,
                        "legendgroup": "인천기지 터미널분리 실시설계 기술용역",
                        "offsetgroup": "인천기지 터미널분리 실시설계 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천기지 터미널분리 실시설계 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 주배관 설계용역(위례)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:30a37c",
                        "ysrc": "SmileJang:21:77b445",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:786cc3",
                        "showlegend": true,
                        "legendgroup": "LNG 주배관 설계용역(위례)",
                        "offsetgroup": "LNG 주배관 설계용역(위례)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 주배관 설계용역(위례)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널 1차 증설사업(No.4 Tank) PF 기술자문 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:be88dc",
                        "ysrc": "SmileJang:21:7f08fc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4a6547",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널 1차 증설사업(No.4 Tank) PF 기술자문 용역",
                        "offsetgroup": "보령 LNG 터미널 1차 증설사업(No.4 Tank) PF 기술자문 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널 1차 증설사업(No.4 Tank) PF 기술자문 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널(2단계) #5~7 저장탱크 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:ebf685",
                        "ysrc": "SmileJang:21:e9e04f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:80e30a",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널(2단계) #5~7 저장탱크 설계용역",
                        "offsetgroup": "보령 LNG 터미널(2단계) #5~7 저장탱크 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널(2단계) #5~7 저장탱크 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "위례 주배관 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:4c7d0f",
                        "ysrc": "SmileJang:21:5e2418",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:dc09c2",
                        "showlegend": true,
                        "legendgroup": "위례 주배관 설계용역",
                        "offsetgroup": "위례 주배관 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=위례 주배관 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "부산항 신항 LNG Bunkering 사업 기술타당성 검토 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3e82dd",
                        "ysrc": "SmileJang:21:8a3fa3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ffcbbd",
                        "showlegend": true,
                        "legendgroup": "부산항 신항 LNG Bunkering 사업 기술타당성 검토 용역",
                        "offsetgroup": "부산항 신항 LNG Bunkering 사업 기술타당성 검토 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=부산항 신항 LNG Bunkering 사업 기술타당성 검토 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "파나마 Costa Norte LNG Terminal(설비) LNG Tank 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7f2ee6",
                        "ysrc": "SmileJang:21:0e00cd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:4b2fe8",
                        "showlegend": true,
                        "legendgroup": "파나마 Costa Norte LNG Terminal(설비) LNG Tank 설계용역",
                        "offsetgroup": "파나마 Costa Norte LNG Terminal(설비) LNG Tank 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=파나마 Costa Norte LNG Terminal(설비) LNG Tank 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "KNPC Al-Zour LNG Import Project (ZOR/LNG/EPC-0058) 상세 설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:9c0764",
                        "ysrc": "SmileJang:21:da57c1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:813c3a",
                        "showlegend": true,
                        "legendgroup": "KNPC Al-Zour LNG Import Project (ZOR/LNG/EPC-0058) 상세 설계 용역",
                        "offsetgroup": "KNPC Al-Zour LNG Import Project (ZOR/LNG/EPC-0058) 상세 설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=KNPC Al-Zour LNG Import Project (ZOR/LNG/EPC-0058) 상세 설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "GTL FPSO 기본설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d94475",
                        "ysrc": "SmileJang:21:1a7ec8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6c2b55",
                        "showlegend": true,
                        "legendgroup": "GTL FPSO 기본설계용역",
                        "offsetgroup": "GTL FPSO 기본설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=GTL FPSO 기본설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평촌관리소 증설공사 설계 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:909d03",
                        "ysrc": "SmileJang:21:2fbf3b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1f94f0",
                        "showlegend": true,
                        "legendgroup": "평촌관리소 증설공사 설계 기술용역",
                        "offsetgroup": "평촌관리소 증설공사 설계 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평촌관리소 증설공사 설계 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 터미널 분리 및 공정최적화 실시설계 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:527ada",
                        "ysrc": "SmileJang:21:7467fd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:534162",
                        "showlegend": true,
                        "legendgroup": "평택기지 터미널 분리 및 공정최적화 실시설계 기술용역",
                        "offsetgroup": "평택기지 터미널 분리 및 공정최적화 실시설계 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 터미널 분리 및 공정최적화 실시설계 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "안양 가스발전소 공급기지 건설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2ad6bf",
                        "ysrc": "SmileJang:21:0d8d94",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:31bf31",
                        "showlegend": true,
                        "legendgroup": "안양 가스발전소 공급기지 건설공사 설계용역",
                        "offsetgroup": "안양 가스발전소 공급기지 건설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=안양 가스발전소 공급기지 건설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "동두천 복합 천연가스 고압공급 최적방안 기술검토 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2fae89",
                        "ysrc": "SmileJang:21:2179a9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:628433",
                        "showlegend": true,
                        "legendgroup": "동두천 복합 천연가스 고압공급 최적방안 기술검토 용역",
                        "offsetgroup": "동두천 복합 천연가스 고압공급 최적방안 기술검토 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=동두천 복합 천연가스 고압공급 최적방안 기술검토 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 증발가스압축기 설치공사 실시설계 및 건설사업관리 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:56ed4c",
                        "ysrc": "SmileJang:21:9c2cc3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6f706e",
                        "showlegend": true,
                        "legendgroup": "평택기지 증발가스압축기 설치공사 실시설계 및 건설사업관리 용역",
                        "offsetgroup": "평택기지 증발가스압축기 설치공사 실시설계 및 건설사업관리 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 증발가스압축기 설치공사 실시설계 및 건설사업관리 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "태국LPG터미널 실시설계 검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:6dec76",
                        "ysrc": "SmileJang:21:267bc3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:329e25",
                        "showlegend": true,
                        "legendgroup": "태국LPG터미널 실시설계 검토용역",
                        "offsetgroup": "태국LPG터미널 실시설계 검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=태국LPG터미널 실시설계 검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2016년 군단위 LPG 배관망사업 설계감리용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:ed1e2e",
                        "ysrc": "SmileJang:21:1af2c5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6e9ee2",
                        "showlegend": true,
                        "legendgroup": "2016년 군단위 LPG 배관망사업 설계감리용역",
                        "offsetgroup": "2016년 군단위 LPG 배관망사업 설계감리용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2016년 군단위 LPG 배관망사업 설계감리용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "서해권 LNG 터미널 내 LNG 벙커링 설비 구축방안 도출 및 개념설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:00f512",
                        "ysrc": "SmileJang:21:e6b6a6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2465a2",
                        "showlegend": true,
                        "legendgroup": "서해권 LNG 터미널 내 LNG 벙커링 설비 구축방안 도출 및 개념설계",
                        "offsetgroup": "서해권 LNG 터미널 내 LNG 벙커링 설비 구축방안 도출 및 개념설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=서해권 LNG 터미널 내 LNG 벙커링 설비 구축방안 도출 및 개념설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "동내관리소 증설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e4e824",
                        "ysrc": "SmileJang:21:9a2406",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:87decf",
                        "showlegend": true,
                        "legendgroup": "동내관리소 증설공사 설계용역",
                        "offsetgroup": "동내관리소 증설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=동내관리소 증설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "관음 GS 방산탑 증설 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:6777fa",
                        "ysrc": "SmileJang:21:432299",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ffca2a",
                        "showlegend": true,
                        "legendgroup": "관음 GS 방산탑 증설 설계용역",
                        "offsetgroup": "관음 GS 방산탑 증설 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=관음 GS 방산탑 증설 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "삼척생산기지 #5~9 저장탱크 설계 및 감리기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:c93fc6",
                        "ysrc": "SmileJang:21:871d60",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b5bacc",
                        "showlegend": true,
                        "legendgroup": "삼척생산기지 #5~9 저장탱크 설계 및 감리기술용역",
                        "offsetgroup": "삼척생산기지 #5~9 저장탱크 설계 및 감리기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=삼척생산기지 #5~9 저장탱크 설계 및 감리기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "바이오가스 고품질화 설비 설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:eba9a8",
                        "ysrc": "SmileJang:21:e4d333",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3a7f6b",
                        "showlegend": true,
                        "legendgroup": "바이오가스 고품질화 설비 설계",
                        "offsetgroup": "바이오가스 고품질화 설비 설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=바이오가스 고품질화 설비 설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널 사업 건설 기간 중 기술 자문 용역계약(별도)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:9101b1",
                        "ysrc": "SmileJang:21:0405f1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:e5fd53",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널 사업 건설 기간 중 기술 자문 용역계약(별도)",
                        "offsetgroup": "보령 LNG 터미널 사업 건설 기간 중 기술 자문 용역계약(별도)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널 사업 건설 기간 중 기술 자문 용역계약(별도)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 연료추진 기자재 안전성/성능 평가 설비 기본 설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b02ea8",
                        "ysrc": "SmileJang:21:e541f0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:d37bfd",
                        "showlegend": true,
                        "legendgroup": "LNG 연료추진 기자재 안전성/성능 평가 설비 기본 설계",
                        "offsetgroup": "LNG 연료추진 기자재 안전성/성능 평가 설비 기본 설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 연료추진 기자재 안전성/성능 평가 설비 기본 설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "태국 PTT 에탄터미널 신규설치 및 기존 LNG Jetty 용도변경을 위한 사업타당성 조사용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3fc1b7",
                        "ysrc": "SmileJang:21:dd697a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9eb8d0",
                        "showlegend": true,
                        "legendgroup": "태국 PTT 에탄터미널 신규설치 및 기존 LNG Jetty 용도변경을 위한 사업타당성 조사용역",
                        "offsetgroup": "태국 PTT 에탄터미널 신규설치 및 기존 LNG Jetty 용도변경을 위한 사업타당성 조사용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=태국 PTT 에탄터미널 신규설치 및 기존 LNG Jetty 용도변경을 위한 사업타당성 조사용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2017년 생산설비 개선 통합기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:ffc1f4",
                        "ysrc": "SmileJang:21:1b1481",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ddbea5",
                        "showlegend": true,
                        "legendgroup": "2017년 생산설비 개선 통합기술용역",
                        "offsetgroup": "2017년 생산설비 개선 통합기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2017년 생산설비 개선 통합기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "SMV 설비군별 방류수 집수조 및 드레인배관 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:638bac",
                        "ysrc": "SmileJang:21:13b71d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1df0d0",
                        "showlegend": true,
                        "legendgroup": "SMV 설비군별 방류수 집수조 및 드레인배관 설계용역",
                        "offsetgroup": "SMV 설비군별 방류수 집수조 및 드레인배관 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=SMV 설비군별 방류수 집수조 및 드레인배관 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 SMV 드레인 개선 배관분야 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:58d962",
                        "ysrc": "SmileJang:21:9cc212",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:27ef0b",
                        "showlegend": true,
                        "legendgroup": "평택기지 SMV 드레인 개선 배관분야 설계용역",
                        "offsetgroup": "평택기지 SMV 드레인 개선 배관분야 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 SMV 드레인 개선 배관분야 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "군산 CNG 충전소 내역서 검증 설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:db13c2",
                        "ysrc": "SmileJang:21:cd41ac",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:2b990b",
                        "showlegend": true,
                        "legendgroup": "군산 CNG 충전소 내역서 검증 설계 용역",
                        "offsetgroup": "군산 CNG 충전소 내역서 검증 설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=군산 CNG 충전소 내역서 검증 설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "한국가스공사 인천기지본부 #2변전소, 제1공장 염소처리실 전력계통해석(보호계전기 정정) 및 기술자문 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a73b43",
                        "ysrc": "SmileJang:21:74b3b9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:91891d",
                        "showlegend": true,
                        "legendgroup": "한국가스공사 인천기지본부 #2변전소, 제1공장 염소처리실 전력계통해석(보호계전기 정정) 및 기술자문 용역",
                        "offsetgroup": "한국가스공사 인천기지본부 #2변전소, 제1공장 염소처리실 전력계통해석(보호계전기 정정) 및 기술자문 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=한국가스공사 인천기지본부 #2변전소, 제1공장 염소처리실 전력계통해석(보호계전기 정정) 및 기술자문 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "제주기지 저장탱크 및 부대설비공사 Tank Opening 위치변경 구조검토 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b0019b",
                        "ysrc": "SmileJang:21:d7f0f8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9faabc",
                        "showlegend": true,
                        "legendgroup": "제주기지 저장탱크 및 부대설비공사 Tank Opening 위치변경 구조검토 용역",
                        "offsetgroup": "제주기지 저장탱크 및 부대설비공사 Tank Opening 위치변경 구조검토 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=제주기지 저장탱크 및 부대설비공사 Tank Opening 위치변경 구조검토 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "H-Project Engineering and Consulting Services Agreement(기계/천연가스 공급설비 기본설계 및 기술지원)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:5c4d67",
                        "ysrc": "SmileJang:21:06f6ef",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:cf85f2",
                        "showlegend": true,
                        "legendgroup": "H-Project Engineering and Consulting Services Agreement(기계/천연가스 공급설비 기본설계 및 기술지원)",
                        "offsetgroup": "H-Project Engineering and Consulting Services Agreement(기계/천연가스 공급설비 기본설계 및 기술지원)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=H-Project Engineering and Consulting Services Agreement(기계/천연가스 공급설비 기본설계 및 기술지원)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "국내 주요 항만의 LNG 벙커링 인프라 구축방안 연구용역(플랜트분야)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:f7f32e",
                        "ysrc": "SmileJang:21:d295f2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:3997ef",
                        "showlegend": true,
                        "legendgroup": "국내 주요 항만의 LNG 벙커링 인프라 구축방안 연구용역(플랜트분야)",
                        "offsetgroup": "국내 주요 항만의 LNG 벙커링 인프라 구축방안 연구용역(플랜트분야)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=국내 주요 항만의 LNG 벙커링 인프라 구축방안 연구용역(플랜트분야)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG Terminal Project 2-2단계 설계감리용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:a9c38f",
                        "ysrc": "SmileJang:21:059a14",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:be624d",
                        "showlegend": true,
                        "legendgroup": "보령 LNG Terminal Project 2-2단계 설계감리용역",
                        "offsetgroup": "보령 LNG Terminal Project 2-2단계 설계감리용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG Terminal Project 2-2단계 설계감리용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2018년 생산설비 개선 통합기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:fcebf5",
                        "ysrc": "SmileJang:21:4e4517",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ab4a2f",
                        "showlegend": true,
                        "legendgroup": "2018년 생산설비 개선 통합기술용역",
                        "offsetgroup": "2018년 생산설비 개선 통합기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2018년 생산설비 개선 통합기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "포승, 간성관리소 증설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:aea2bb",
                        "ysrc": "SmileJang:21:8c1652",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:146e88",
                        "showlegend": true,
                        "legendgroup": "포승, 간성관리소 증설공사 설계용역",
                        "offsetgroup": "포승, 간성관리소 증설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=포승, 간성관리소 증설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천기지 14변전소, 2공장 전력계통해석, 보호계전기 변경 정정계산 및 기술자문",
                        "type": "bar",
                        "xsrc": "SmileJang:21:d61eff",
                        "ysrc": "SmileJang:21:54f89b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:04cd3d",
                        "showlegend": true,
                        "legendgroup": "인천기지 14변전소, 2공장 전력계통해석, 보호계전기 변경 정정계산 및 기술자문",
                        "offsetgroup": "인천기지 14변전소, 2공장 전력계통해석, 보호계전기 변경 정정계산 및 기술자문",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천기지 14변전소, 2공장 전력계통해석, 보호계전기 변경 정정계산 및 기술자문<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천기지 16, 16E 연구개발원 보호계전기 정정계산 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:265e9d",
                        "ysrc": "SmileJang:21:f6133e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5c6450",
                        "showlegend": true,
                        "legendgroup": "인천기지 16, 16E 연구개발원 보호계전기 정정계산 용역",
                        "offsetgroup": "인천기지 16, 16E 연구개발원 보호계전기 정정계산 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천기지 16, 16E 연구개발원 보호계전기 정정계산 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG Terminal 기초조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7d8906",
                        "ysrc": "SmileJang:21:8d33a2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9d3be9",
                        "showlegend": true,
                        "legendgroup": "LNG Terminal 기초조사 용역",
                        "offsetgroup": "LNG Terminal 기초조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG Terminal 기초조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널 2-2단계 증설사업 PF 기술자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:25617f",
                        "ysrc": "SmileJang:21:2377ff",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:9d4225",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널 2-2단계 증설사업 PF 기술자문용역",
                        "offsetgroup": "보령 LNG 터미널 2-2단계 증설사업 PF 기술자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널 2-2단계 증설사업 PF 기술자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "한국가스공사 인천기지본부 릴레이코디네이션 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:713701",
                        "ysrc": "SmileJang:21:109a7b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:7bbc68",
                        "showlegend": true,
                        "legendgroup": "한국가스공사 인천기지본부 릴레이코디네이션 용역",
                        "offsetgroup": "한국가스공사 인천기지본부 릴레이코디네이션 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=한국가스공사 인천기지본부 릴레이코디네이션 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "가나 NG배관 및 정압관리소 FEED 설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:857036",
                        "ysrc": "SmileJang:21:924b68",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b9e6ab",
                        "showlegend": true,
                        "legendgroup": "가나 NG배관 및 정압관리소 FEED 설계 용역",
                        "offsetgroup": "가나 NG배관 및 정압관리소 FEED 설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=가나 NG배관 및 정압관리소 FEED 설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2018년 군단위 LPG 배관멍 구축사업 기본설계 용역(양구군)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:82a803",
                        "ysrc": "SmileJang:21:5ed6df",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b844a8",
                        "showlegend": true,
                        "legendgroup": "2018년 군단위 LPG 배관멍 구축사업 기본설계 용역(양구군)",
                        "offsetgroup": "2018년 군단위 LPG 배관멍 구축사업 기본설계 용역(양구군)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2018년 군단위 LPG 배관멍 구축사업 기본설계 용역(양구군)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Y-Project 천연가스 주배관 현장 조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:0439cd",
                        "ysrc": "SmileJang:21:442db4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:be92a9",
                        "showlegend": true,
                        "legendgroup": "Y-Project 천연가스 주배관 현장 조사 용역",
                        "offsetgroup": "Y-Project 천연가스 주배관 현장 조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=Y-Project 천연가스 주배관 현장 조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "삼척기지 LNG Reloading 시스템 구축 기술검토 및 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:87f67f",
                        "ysrc": "SmileJang:21:6a4d4d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:1ea4cc",
                        "showlegend": true,
                        "legendgroup": "삼척기지 LNG Reloading 시스템 구축 기술검토 및 설계용역",
                        "offsetgroup": "삼척기지 LNG Reloading 시스템 구축 기술검토 및 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=삼척기지 LNG Reloading 시스템 구축 기술검토 및 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "생산기지 BC유 설비개조 검토용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:3f6e7c",
                        "ysrc": "SmileJang:21:a7b817",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:a09519",
                        "showlegend": true,
                        "legendgroup": "생산기지 BC유 설비개조 검토용역",
                        "offsetgroup": "생산기지 BC유 설비개조 검토용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=생산기지 BC유 설비개조 검토용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "묘도 LNG Terminal 개념설계 및 타당성 조사 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:71c4dc",
                        "ysrc": "SmileJang:21:3e972a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6da53d",
                        "showlegend": true,
                        "legendgroup": "묘도 LNG Terminal 개념설계 및 타당성 조사 용역",
                        "offsetgroup": "묘도 LNG Terminal 개념설계 및 타당성 조사 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=묘도 LNG Terminal 개념설계 및 타당성 조사 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 연료추진 기자재 안전성/성능 시험평가설비 상세설계",
                        "type": "bar",
                        "xsrc": "SmileJang:21:2e88cd",
                        "ysrc": "SmileJang:21:02daab",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:88e858",
                        "showlegend": true,
                        "legendgroup": "LNG 연료추진 기자재 안전성/성능 시험평가설비 상세설계",
                        "offsetgroup": "LNG 연료추진 기자재 안전성/성능 시험평가설비 상세설계",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 연료추진 기자재 안전성/성능 시험평가설비 상세설계<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령 LNG 터미널 1차 증설사업 건설기간 중 기술자문용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:6d6f52",
                        "ysrc": "SmileJang:21:c5c9ed",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:bfd810",
                        "showlegend": true,
                        "legendgroup": "보령 LNG 터미널 1차 증설사업 건설기간 중 기술자문용역",
                        "offsetgroup": "보령 LNG 터미널 1차 증설사업 건설기간 중 기술자문용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령 LNG 터미널 1차 증설사업 건설기간 중 기술자문용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "여주 PJT 기본설계 (O/E) 용역(가스설계)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:152355",
                        "ysrc": "SmileJang:21:a9ca42",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:319df9",
                        "showlegend": true,
                        "legendgroup": "여주 PJT 기본설계 (O/E) 용역(가스설계)",
                        "offsetgroup": "여주 PJT 기본설계 (O/E) 용역(가스설계)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=여주 PJT 기본설계 (O/E) 용역(가스설계)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "LNG 벙커링 기자재 시험평가 설비 기본 및 상세설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:651dfc",
                        "ysrc": "SmileJang:21:af99e4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:6d4545",
                        "showlegend": true,
                        "legendgroup": "LNG 벙커링 기자재 시험평가 설비 기본 및 상세설계 용역",
                        "offsetgroup": "LNG 벙커링 기자재 시험평가 설비 기본 및 상세설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=LNG 벙커링 기자재 시험평가 설비 기본 및 상세설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "동북아 LNG Terminal 기본설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7575c8",
                        "ysrc": "SmileJang:21:53d549",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:666290",
                        "showlegend": true,
                        "legendgroup": "동북아 LNG Terminal 기본설계 용역",
                        "offsetgroup": "동북아 LNG Terminal 기본설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=동북아 LNG Terminal 기본설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "울산북항 액화가스 및 석유제품 터미널 FEED용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1e8e35",
                        "ysrc": "SmileJang:21:6e9b15",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:f306ba",
                        "showlegend": true,
                        "legendgroup": "울산북항 액화가스 및 석유제품 터미널 FEED용역",
                        "offsetgroup": "울산북항 액화가스 및 석유제품 터미널 FEED용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=울산북항 액화가스 및 석유제품 터미널 FEED용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "보령LNG터미널 2차증설 건설사업 기술자문 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:042ede",
                        "ysrc": "SmileJang:21:40a32e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:f81a33",
                        "showlegend": true,
                        "legendgroup": "보령LNG터미널 2차증설 건설사업 기술자문 용역",
                        "offsetgroup": "보령LNG터미널 2차증설 건설사업 기술자문 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=보령LNG터미널 2차증설 건설사업 기술자문 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "군단위 LPG배관망사업 설계 및 감리용역(완도군) ",
                        "type": "bar",
                        "xsrc": "SmileJang:21:35e78a",
                        "ysrc": "SmileJang:21:9d59bf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5b384b",
                        "showlegend": true,
                        "legendgroup": "군단위 LPG배관망사업 설계 및 감리용역(완도군) ",
                        "offsetgroup": "군단위 LPG배관망사업 설계 및 감리용역(완도군) ",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=군단위 LPG배관망사업 설계 및 감리용역(완도군) <br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "군단위 LPG배관망사업 설계 및 감리용역(울릉군)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:5eb55e",
                        "ysrc": "SmileJang:21:504579",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:cbe870",
                        "showlegend": true,
                        "legendgroup": "군단위 LPG배관망사업 설계 및 감리용역(울릉군)",
                        "offsetgroup": "군단위 LPG배관망사업 설계 및 감리용역(울릉군)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=군단위 LPG배관망사업 설계 및 감리용역(울릉군)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2019년 공급설비보강 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:758544",
                        "ysrc": "SmileJang:21:67187c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:24f3e6",
                        "showlegend": true,
                        "legendgroup": "2019년 공급설비보강 기술용역",
                        "offsetgroup": "2019년 공급설비보강 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2019년 공급설비보강 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "여주발전소 정압설비 상세설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:52d155",
                        "ysrc": "SmileJang:21:f1c714",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5ff787",
                        "showlegend": true,
                        "legendgroup": "여주발전소 정압설비 상세설계 용역",
                        "offsetgroup": "여주발전소 정압설비 상세설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=여주발전소 정압설비 상세설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "울산 계량설비 EPC사업 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:77d9f0",
                        "ysrc": "SmileJang:21:afc0e0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:38ff53",
                        "showlegend": true,
                        "legendgroup": "울산 계량설비 EPC사업 설계용역",
                        "offsetgroup": "울산 계량설비 EPC사업 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=울산 계량설비 EPC사업 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "(중국) Jiangsu LNG터미널  LNG저장탱크 설계 검증 사업             ",
                        "type": "bar",
                        "xsrc": "SmileJang:21:be2460",
                        "ysrc": "SmileJang:21:e372e4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:fc16ec",
                        "showlegend": true,
                        "legendgroup": "(중국) Jiangsu LNG터미널  LNG저장탱크 설계 검증 사업             ",
                        "offsetgroup": "(중국) Jiangsu LNG터미널  LNG저장탱크 설계 검증 사업             ",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=(중국) Jiangsu LNG터미널  LNG저장탱크 설계 검증 사업             <br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평창관리소 계량설비 설치공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:b80a1d",
                        "ysrc": "SmileJang:21:81414a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19d3f3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:aa4429",
                        "showlegend": true,
                        "legendgroup": "평창관리소 계량설비 설치공사 설계용역",
                        "offsetgroup": "평창관리소 계량설비 설치공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평창관리소 계량설비 설치공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "인천 #1탱크 보수공사 실시설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7e2b57",
                        "ysrc": "SmileJang:21:7b19cc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:0ade3b",
                        "showlegend": true,
                        "legendgroup": "인천 #1탱크 보수공사 실시설계용역",
                        "offsetgroup": "인천 #1탱크 보수공사 실시설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=인천 #1탱크 보수공사 실시설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "HCC HYCO Project(정압기지 NG배관 설계)",
                        "type": "bar",
                        "xsrc": "SmileJang:21:58fe99",
                        "ysrc": "SmileJang:21:4da7a4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:a43740",
                        "showlegend": true,
                        "legendgroup": "HCC HYCO Project(정압기지 NG배관 설계)",
                        "offsetgroup": "HCC HYCO Project(정압기지 NG배관 설계)",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=HCC HYCO Project(정압기지 NG배관 설계)<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "동북아 LNG Hub Terminal LNG저장탱크 상세설계 용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:e08c55",
                        "ysrc": "SmileJang:21:bd7e72",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:c93a79",
                        "showlegend": true,
                        "legendgroup": "동북아 LNG Hub Terminal LNG저장탱크 상세설계 용역",
                        "offsetgroup": "동북아 LNG Hub Terminal LNG저장탱크 상세설계 용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=동북아 LNG Hub Terminal LNG저장탱크 상세설계 용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "2019년 피깅설비 및 이동식가스공급설비 보강 기술용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:7fab6d",
                        "ysrc": "SmileJang:21:b8d823",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:25b0af",
                        "showlegend": true,
                        "legendgroup": "2019년 피깅설비 및 이동식가스공급설비 보강 기술용역",
                        "offsetgroup": "2019년 피깅설비 및 이동식가스공급설비 보강 기술용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=2019년 피깅설비 및 이동식가스공급설비 보강 기술용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 노후 기화해수펌프 교체사업 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:1fcc40",
                        "ysrc": "SmileJang:21:1d009c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:ba2888",
                        "showlegend": true,
                        "legendgroup": "평택기지 노후 기화해수펌프 교체사업 설계용역",
                        "offsetgroup": "평택기지 노후 기화해수펌프 교체사업 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 노후 기화해수펌프 교체사업 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "평택기지 서해권 Common배관 PCV설치공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:305d56",
                        "ysrc": "SmileJang:21:de1f39",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:b08644",
                        "showlegend": true,
                        "legendgroup": "평택기지 서해권 Common배관 PCV설치공사 설계용역",
                        "offsetgroup": "평택기지 서해권 Common배관 PCV설치공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=평택기지 서해권 Common배관 PCV설치공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "울산관리소 증설공사 설계용역",
                        "type": "bar",
                        "xsrc": "SmileJang:21:184840",
                        "ysrc": "SmileJang:21:d239dd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "basesrc": "SmileJang:21:5e0bd8",
                        "showlegend": true,
                        "legendgroup": "울산관리소 증설공사 설계용역",
                        "offsetgroup": "울산관리소 증설공사 설계용역",
                        "orientation": "h",
                        "textposition": "auto",
                        "hovertemplate": "프로젝트명=울산관리소 증설공사 설계용역<br>계약일=%{base}<br>준공일=%{x}<br>발주자=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "한국가스기술공사 진행프로젝트"
                    },
                    "xaxis": {
                        "type": "date",
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "발주자"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "autorange": "reversed"
                    },
                    "legend": {
                        "title": {
                            "text": "프로젝트명"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "r": 200
                    },
                    "barmode": "overlay",
                    "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/~SmileJang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 11:25:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SmileJang",
                "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-06-19T10:49:46.501725Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pighuman777/24.embed",
            "fid": "pighuman777:24",
            "filename": "pie",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pighuman777/24/9_ND5GAKUQQJ1CSAVM8A74TEMU3XX286.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pighuman777/24/2_4FA5MHDO7UNTFVEC7LGCXEZISVPUU7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/24/8_FIHK9HP8ARGIBQH2SBQMQI8JJ5KYW4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pighuman777/24/9_ND5GAKUQQJ1CSAVM8A74TEMU3XX286.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pighuman777:24",
                "plots": "https://api.plotly.com/v2/plots/pighuman777:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=pighuman777"
            },
            "owner": "pighuman777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://chart-studio.plotly.com/~pighuman777/24/",
            "world_readable": true,
            "date_modified": "2025-06-20T09:45:44.825Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pighuman777/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "labelssrc": "pighuman777:43:21ec42",
                        "valuessrc": "pighuman777:43:73aaea",
                        "showlegend": true,
                        "legendgroup": "",
                        "hovertemplate": "1-4 집에 함께 살고 있는 인원은 몇 명입니까=%{label}<br>count=%{value}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "집에 함께 살고 있는 인원은 몇명인가요??"
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "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/~pighuman777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:45:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pighuman777",
                "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-06-19T10:48:40.928011Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kimsiheon/64.embed",
            "fid": "kimsiheon:64",
            "filename": "한남동 연령별 인구수",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/64/9_YHWXXPCIBIEL9YJDYY6YQN8YOYM5ZX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/64/2_57OCDZRN3VA9FUILJ9CIR6JG8A52D9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/64/8_B8OMXIJD4XP9N6FV3FISIB9TAYA06M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/64/9_YHWXXPCIBIEL9YJDYY6YQN8YOYM5ZX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kimsiheon:64",
                "plots": "https://api.plotly.com/v2/plots/kimsiheon:64",
                "parent": "https://api.plotly.com/v2/folders/home?user=kimsiheon"
            },
            "owner": "kimsiheon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kimsiheon/64/",
            "world_readable": true,
            "date_modified": "2025-06-19T10:48:40.938Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kimsiheon/64/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "height": 30,
                            "valuessrc": "kimsiheon:63:b0d256"
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "kimsiheon:63:77a7cd"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "경기도 부천시_문화공간 개방시설 현황"
                    },
                    "width": 1500,
                    "height": 800,
                    "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": 800,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kimsiheon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:44:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kimsiheon",
                "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-06-19T10:48:12.980729Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kimsiheon/62.embed",
            "fid": "kimsiheon:62",
            "filename": "생활쓰레기 월별 발생량 반입연월에 따른 합계량",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/62/9_C97USFSXEFT5PPO24M5O8ZBYYDV1QW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/62/2_F5MCEOPEFUYZ0VBEDMUEJOOWXXE9BO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/62/8_CU7IRQUZNZFG4H474X9BRSK9V8VVHZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kimsiheon/62/9_C97USFSXEFT5PPO24M5O8ZBYYDV1QW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kimsiheon:62",
                "plots": "https://api.plotly.com/v2/plots/kimsiheon:62",
                "parent": "https://api.plotly.com/v2/folders/home?user=kimsiheon"
            },
            "owner": "kimsiheon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~kimsiheon/62/",
            "world_readable": true,
            "date_modified": "2025-06-19T10:55:03.179Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kimsiheon/62/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "kimsiheon:69:4d93fe",
                        "ysrc": "kimsiheon:69:a2de36",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "반입연월=%{x}<br>합계=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "생활쓰레기 월별 발생량 반입연월에 따른 합계량"
                    },
                    "xaxis": {
                        "dtick": "M1",
                        "title": {
                            "text": "반입연월"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "tickformat": "%Y-%m"
                    },
                    "yaxis": {
                        "title": {
                            "text": "합계"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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/~kimsiheon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-12 10:44:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kimsiheon",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}