Grids


Jump to API response

Grids are the core of Plotly's data API. A plot's traces reference underlying grid data. This endpoint allows API creation and manipulation of grids.

Reference

Authorization


Any user with or without a Plotly account may view public grid files. For private files, see authentication.

Grid Meta Information

The grid meta information extends the file meta information with the following fields:


write-only fields:

  • data only accessible from the create endpoint

read-write fields:

  • cols only writable from the col endpoint
  • rows only accessible from the row endpoint
  • metadata

Actions


create

To create a grid, POST to this endpoint with any of the writable grid fields included in the body of the request. The only required field is data.

The data field takes the following form:

{
    "cols":
        {
            "first column": {"data": ["a", "b", "c"], "order": 0},
            "second column": {"data": [1, 2, 3], "order": 1}
        }
}

Note: each column of the cols field is a key-value pair with the key corresponding to the column header name and the value corresponding to an object specifying the column's order and data.

Example:

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": {"cols": {"first": {"data": [1,2,3], "order": 0}}}
}

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": "{\"cols\": {\"first\": {\"data\": [1,2,3], \"order\": 0}}}",
    "parent": 932,
    "filename": "new grid"
}

Note: the integer associated with the parent field corresponds to a file with idlocal 932. This file must have filetype fold for a sucessful POST.

When creating a grid, you can optionally specify source fields to indicate where a grid has come from:

  • source_fid: the fid of a grid that was copied (and presumably edited) to produce this one

  • source_url: the URL this grid was imported from

  • source_referer: if source_url is given, you can optionally add this field to give the URL of an index page where the source_url link appears. (This could give more information about the data, or present it in alternate formats.)


upload

A raw file may be uploaded by making a POST request to the upload endpoint. This will create a new grid for a single 2D data source, or a folder containing multiple grids when there are multiple data sources (e.g. a spreadsheet with many tabs, or a zip archive). To determine which type of file has been created, check the filetype key in the response, which will either be grid or fold.

The following options may be passed as HTTP headers to control the upload.

  • X-File-Name: gives the filename of the file being uploaded. The extension is used as a first guess of the file type for parsing and will be used as the created filename if possible.

  • Plotly-World-Readable: controls the visibility of the created grid or folder. May be true or false. Defaults to false.

  • Plotly-Parent: gives the parent folder id, like for create.

  • Plotly-Parent-Path: gives the path to the parent folder, like for create.


row

The row endpoint allows you to append existing grids with new information. This endpoint requires a POST and returns a 201 Created response on success.

Examples:

// POST https://api.plotly.com/v2/grids/henreitta:88/row --> 201 Created
// Add three rows to the existing grid with fid henrietta:88
{
    "rows": [[1, 0.5], [2, 0.1], [3, 0.7]]
}


col

The col endpoint allows you to retrieve existing columns of a grid via a GET request, completely replace existing columns of a grid via a PUT request, or append existing grids with full columns of new data via a POST request. Both the GET and PUT requests require the existing columns to be specified via a uid query (see examples below) and return a 200 OK response on success. The data, name and order fields of a column can be updated via a PUT request. The POST request does not take a column query and returns a 201 Created response on success.

Example GET:

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Retrieve a column with uid "some_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Retrieve multiple columns with uids "some_uid" and "some_other_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to retrieve a column not contained in grid

Example PUT:

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Replace a column with uid "some_uid"
{
    "cols": "[{\"data\": [0, 1], \"name\": \"new name\"}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Replace multiple columns with uids "some_uid" and "some_other_uid"
{
    "cols": "[{\"data\": [0, 1], \"order\": 0}, {\"data\": [\"a\", \"b\"]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to replace a column not contained in grid
{
    "cols": "[{\"data\": [0, 1]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=only_one_uid_specified --> 400 Bad Request
// Attempt to update a column with multiple columns of data
{
    "cols": "[{\"data\": [0, 1]}, {\"data\": [\"a\", \"b\"]}]"
}

Note: The data to be updated via a PUT request will respect the order of the columns specified by the uids of the query.

Example POST:

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 400 Bad Request
// Add two columns
{
    "cols": [{"name": "col name 1", "data": [0, 1]}, {"name": "col name 2", "data": [9, 9]}]
}

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 201 Created
// Add two columns
{
    "cols": "[{\"name\": \"col name 1\", \"data\": [0, 1]}, {\"name\": \"col name 2\", \"data\": [9, 9]}]"
}


retrieve

The grid meta information can be retrieved by making a GET request to the grids endpoint.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88


content

The contents of a grid can be downloaded via a GET request to the content resource. The Content-Type header will be appropriately set for the response body.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88/content


destroy

To delete an grid, make a DELETE request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/henrietta:88 --> 204 No Content


partial update

To update the writable meta information of an existing grid, you make a PATCH request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PATCH https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
    "filename": "my new and unique grid name",
    "parent": 123
}


update

To completely replace the writable meta information of an existing grid, you make a PUT request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PUT https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "parent": -1,
    "world_readable": true,
    "filename": "my new and unique grid name"
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
}


drop reference

Grids may reference other files in Plotly called extras. Because extras may be referenced from many files, instead of deleting them to remove them, you may just dereference them via a POST request to this endpoint. This is a safer approach and is used to manage extras in the Plotly webapp. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/drop_reference --> 200 OK
{
    "fid": "henrietta:99"
}


trash

A POST request to this endpoint allows for the recoverable trashing of the grid specified in the detail. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/trash ---> 200 OK

Note: This request is idempotent. Trashing a folder that is already trashed will also succeed and return 200 OK.


restore

This endpoint allows for a trashed grid to be restored via a POST request. Only the owner of the grid has permission to restore that grid. A successful restore response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/restore ---> 200

Note: This request is idempotent. Restoring a grid that is not yet trashed will also succeed and return 200 OK.


permanent delete

A DELETE request to this endpoint allows for the permanent deletion of the grid specified in the endpoint detail. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/plotlvr:9/permanent_delete ---> 204 No Content


lookup

Get a grid using its path and parent instead of using its fid. If the parent is not specified, it's assumed to be a user's home folder. The path given is assumed to be relative to the parent.

By default, the user making the request is assumed to be the owner of the file being found. However, this is controlled via the user query param.

query params

Only the path param is required.

  • path (required) The '/'-delimited path specifying the grid location.
  • parent (optional) The parent id, an integer, which the path is relative to.
  • user (optional) The username of the owner of the file.

Examples:

// GET https://api.plotly.com/v2/grids/lookup?path=my_folder/my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?parent=200&path=my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&path=her_folder/her_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&parent=22&path=her_file ---> 200 OK


GET /v2/grids/nsharp:225/col?format=api
HTTP 200 OK
Allow: GET, POST, PUT, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "cols": [
        {
            "uid": "c36629",
            "data": [
                "objective(Model.Quadratic.y)",
                "208113.5414",
                "25503.73829",
                "194517.46",
                "76849.36722",
                "1600.18",
                "257515.72",
                "775961.7144",
                "1596.13",
                "27087.1838",
                "23795.95805",
                "203082.9779",
                "1896.44",
                "523311.6097",
                "75822.40572",
                "183110.2503",
                "41420.22313",
                "205118.2713",
                "38749.18819",
                "1736.47",
                "207828.0623",
                "21663.99204",
                "47416.59059",
                "725550.0025",
                "558772.2922",
                "734274.6863",
                "18000.75108",
                "118390.9805",
                "81075.63505",
                "572150.9822",
                "104235.8281",
                "2559.69",
                "210453.9552",
                "568438.2069",
                "719456.2712",
                "6934.094261",
                "699671.6809",
                "11716.5608",
                "66605.46603",
                "1601.86",
                "800243.89",
                "240532.5051",
                "15558.81003",
                "58995.67707",
                "167906.7137",
                "722672.302",
                "10364.05576",
                "398295.7152",
                "245068.2701",
                "374231.63",
                "169743.5353",
                "723689.7446",
                "2599.13",
                "159421.5538",
                "3840.044648",
                "6430.307892",
                "22339.77016",
                "2550.6",
                "707626.7361",
                "23001.02372",
                "663616.5973",
                "2596.68",
                "54069.30513",
                "701768.9022",
                "3546.68",
                "2880.15",
                "68744.86584",
                "2715.18",
                "2933.0866",
                "10176.57186",
                "2692.7",
                "2670.31",
                "34605.37576",
                "3226.251958",
                "2798.81",
                "2804.3",
                "2735.88",
                "454821.4661",
                "35299.22706",
                "690560.8246",
                "3968.53",
                "2804.22",
                "672362.7137",
                "14670.00406",
                "2776.97",
                "444659.5729",
                "659601.6032",
                "2846.9",
                "691353.4674",
                "12307.99786",
                "4598.27",
                "155556.3783",
                "304787.7796",
                "153952.3668",
                "4877.24",
                "103415.73",
                "4579.93",
                "5649.21",
                "3781.513412",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "objective(Model.Quadratic.y)"
            ],
            "order": 0,
            "name": "A"
        },
        {
            "uid": "12096b",
            "data": [
                "objective(Model.Quadratic1.y)",
                "3.57015E+12",
                "48438341962",
                "3.27744E+12",
                "4.59178E+11",
                "177833605.6",
                "6.09893E+12",
                "5.52261E+13",
                "175176702.1",
                "64449598929",
                "42293058491",
                "3.28581E+12",
                "251647929.1",
                "2.06459E+13",
                "4.17495E+11",
                "2.93583E+12",
                "1.5813E+11",
                "3.41889E+12",
                "1.37027E+11",
                "211677766.3",
                "3.54308E+12",
                "34772574003",
                "1.85982E+11",
                "4.57146E+13",
                "2.54496E+13",
                "4.67074E+13",
                "23705836204",
                "1.13687E+12",
                "4.83726E+11",
                "2.61525E+13",
                "8.62364E+11",
                "413762174.1",
                "4.11905E+12",
                "2.58595E+13",
                "4.07468E+13",
                "4808173256",
                "3.83359E+13",
                "9761835860",
                "3.04862E+11",
                "178078910.8",
                "5.84548E+13",
                "5.35861E+12",
                "22946453592",
                "3.00471E+11",
                "2.66928E+12",
                "4.14044E+13",
                "7270840456",
                "1.26658E+13",
                "5.52658E+12",
                "1.02012E+13",
                "2.76661E+12",
                "4.14058E+13",
                "420531027.2",
                "1.25348E+12",
                "878567117.9",
                "2856385651",
                "36436782145",
                "404518293.8",
                "4.00639E+13",
                "39022536513",
                "3.42797E+13",
                "415760378.1",
                "2.29436E+11",
                "3.87581E+13",
                "704298342.5",
                "520198887",
                "3.05905E+11",
                "456268323.7",
                "544314553.5",
                "6729508893",
                "453167273.3",
                "440742305.5",
                "70223312948",
                "643469165.1",
                "488959720.3",
                "492767215.7",
                "476126090.5",
                "1.32847E+13",
                "84219570083",
                "3.76063E+13",
                "979448604.7",
                "492739101.2",
                "3.60301E+13",
                "13097635577",
                "483363507",
                "1.27808E+13",
                "3.0986E+13",
                "513363387.8",
                "3.79412E+13",
                "10266273505",
                "1448374557",
                "1.23965E+12",
                "7.49946E+12",
                "1.23555E+12",
                "1885637626",
                "5.6736E+11",
                "1209886348",
                "2220871238",
                "713279984.5",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "objective(Model.Quadratic1.y)"
            ],
            "order": 1,
            "name": "B"
        },
        {
            "uid": "16da37",
            "data": [
                "design variable(Model.Quadratic.x)",
                "54.56",
                "18.57",
                "89.22",
                "47.11",
                "10",
                "100",
                "99.17",
                "10",
                "17.37",
                "17.88",
                "57.65",
                "10",
                "88.32",
                "40.59",
                "88.61",
                "37.75",
                "54.22",
                "36.28",
                "10",
                "54.13",
                "17.02",
                "23.13",
                "93.5",
                "93.37",
                "94.16",
                "15.47",
                "40.22",
                "41.13",
                "93.82",
                "81.75",
                "10",
                "83.39",
                "94.06",
                "85.36",
                "11.41",
                "83.41",
                "12.4",
                "29.45",
                "10",
                "100",
                "49.99",
                "18.84",
                "24.63",
                "42.43",
                "84.72",
                "27.29",
                "92.43",
                "50.39",
                "100",
                "42.92",
                "84.78",
                "10",
                "85.43",
                "17.38",
                "21.54",
                "41.51",
                "10",
                "83.83",
                "41.13",
                "81.79",
                "10",
                "24.97",
                "83.95",
                "10",
                "10",
                "31.77",
                "10",
                "10.11",
                "18.43",
                "10",
                "10",
                "32.58",
                "10.11",
                "10",
                "10",
                "10",
                "96.11",
                "30.77",
                "82.82",
                "10",
                "10",
                "82.26",
                "26.37",
                "10",
                "96.06",
                "83.39",
                "10",
                "82.86",
                "16.84",
                "10",
                "76.73",
                "86.24",
                "76.73",
                "10",
                "55",
                "10",
                "10",
                "11.02",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "design variable(Model.Quadratic.x)"
            ],
            "order": 2,
            "name": "C"
        },
        {
            "uid": "32ec86",
            "data": [
                "design variable(Model.Quadratic.a)",
                "69.09",
                "71.59",
                "23.81",
                "33.58",
                "10",
                "25.24",
                "78.37",
                "10",
                "87.16",
                "71.92",
                "60.15",
                "12.85",
                "66.45",
                "44.41",
                "22.7",
                "27.57",
                "68.94",
                "27.88",
                "11.4",
                "70.11",
                "72.09",
                "86.39",
                "82.41",
                "63.48",
                "82.26",
                "72.31",
                "71.23",
                "46.34",
                "64.4",
                "14.89",
                "19.75",
                "29.09",
                "63.65",
                "98.04",
                "48.81",
                "99.87",
                "72.58",
                "75.41",
                "10",
                "79.5",
                "95.37",
                "41.47",
                "94.88",
                "92.46",
                "100",
                "11.21",
                "46",
                "95.65",
                "36.86",
                "91.33",
                "100",
                "20.12",
                "21.36",
                "10.92",
                "11.87",
                "11.61",
                "19.55",
                "100",
                "12.22",
                "98.48",
                "20.14",
                "84.48",
                "98.88",
                "27.01",
                "22.92",
                "66.29",
                "21.3",
                "23",
                "27.36",
                "21.19",
                "20.89",
                "30.51",
                "25.98",
                "22.04",
                "22.21",
                "21.47",
                "48.62",
                "35.4",
                "100",
                "33.92",
                "22.21",
                "98.67",
                "18.98",
                "21.93",
                "47.57",
                "94.53",
                "22.65",
                "100",
                "38.76",
                "40.08",
                "25.34",
                "40.25",
                "25.09",
                "41.75",
                "33.04",
                "40.2",
                "49.15",
                "26.03",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "design variable(Model.Quadratic.a)"
            ],
            "order": 3,
            "name": "D"
        },
        {
            "uid": "717764",
            "data": [
                "design variable(Model.Quadratic.b)",
                "44.61",
                "42.67",
                "55.4",
                "48.67",
                "55.03",
                "50.69",
                "52.09",
                "54.71",
                "44.24",
                "43.61",
                "54.23",
                "56.19",
                "55.66",
                "64.94",
                "54.56",
                "55.44",
                "44.91",
                "55.47",
                "54.64",
                "44.1",
                "44.6",
                "50.68",
                "54.06",
                "56.86",
                "52.06",
                "43.44",
                "77.75",
                "64.75",
                "55.88",
                "57.21",
                "53.29",
                "97.6",
                "55.93",
                "59.27",
                "47.91",
                "57.66",
                "43.05",
                "37.81",
                "55.26",
                "51.92",
                "43.44",
                "42.9",
                "56.6",
                "33.82",
                "57.6",
                "71.36",
                "56.86",
                "43.03",
                "55.83",
                "34.61",
                "57.57",
                "53.63",
                "40.81",
                "29.03",
                "40.75",
                "55.02",
                "54.49",
                "57.67",
                "55.4",
                "58.45",
                "53.25",
                "54.03",
                "57.86",
                "81.09",
                "53.74",
                "56.27",
                "53.47",
                "52.53",
                "45.14",
                "52.15",
                "53",
                "66.45",
                "51.56",
                "54.42",
                "53.21",
                "53.76",
                "58.94",
                "55.92",
                "55.53",
                "51.85",
                "53.2",
                "56.48",
                "53.65",
                "53.29",
                "58.92",
                "26.7",
                "52.94",
                "57.09",
                "75.75",
                "57.45",
                "82.34",
                "62.88",
                "80.63",
                "67.45",
                "62.75",
                "49.25",
                "68.77",
                "50.49",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "design variable(Model.Quadratic.b)"
            ],
            "order": 4,
            "name": "E"
        },
        {
            "uid": "caeb85",
            "data": [
                "design variable(Model.Quadratic.c)",
                "12.95",
                "23.91",
                "42.11",
                "30.68",
                "49.88",
                "46.72",
                "51.38",
                "49.03",
                "21.09",
                "23.79",
                "46.74",
                "49.54",
                "57.65",
                "18.88",
                "41.37",
                "38.39",
                "12.86",
                "40.01",
                "50.07",
                "14.64",
                "21.84",
                "25.98",
                "46.57",
                "47.37",
                "46.87",
                "23.44",
                "38.78",
                "20.16",
                "47.13",
                "48.11",
                "51.79",
                "26.37",
                "47.83",
                "45.23",
                "32.96",
                "43.89",
                "22.84",
                "88.68",
                "49.26",
                "51.89",
                "31.3",
                "30.98",
                "43.91",
                "15.54",
                "44.59",
                "68.06",
                "48.12",
                "30.09",
                "48.63",
                "16.67",
                "44.12",
                "50.83",
                "43.79",
                "36.96",
                "45.21",
                "50.93",
                "50.7",
                "45.37",
                "50.13",
                "43.76",
                "50.18",
                "46.82",
                "44.62",
                "34.78",
                "50.75",
                "48.49",
                "50.48",
                "51.13",
                "51.41",
                "52.2",
                "51.31",
                "55.4",
                "49.51",
                "50.61",
                "51.2",
                "51.28",
                "47.38",
                "62.1",
                "46.59",
                "58.03",
                "51.22",
                "45.63",
                "57",
                "51.07",
                "46.42",
                "23.67",
                "52.5",
                "45.03",
                "40.59",
                "15.77",
                "49.36",
                "12.17",
                "48.43",
                "27.74",
                "18.48",
                "67.43",
                "46.51",
                "64.02",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "design variable(Model.Quadratic.c)"
            ],
            "order": 5,
            "name": "F"
        },
        {
            "uid": "2aee0d",
            "data": [
                "design variable(Model.Quadratic1.a)",
                "82.43",
                "74.47",
                "86.62",
                "77.75",
                "69.45",
                "91.97",
                "91.72",
                "68.76",
                "87.84",
                "74.69",
                "79.67",
                "69.97",
                "75.39",
                "72.62",
                "87.56",
                "92.17",
                "81.26",
                "91.26",
                "70.2",
                "82.03",
                "74.09",
                "82.72",
                "86.84",
                "81.51",
                "86.63",
                "73.16",
                "81.11",
                "73.59",
                "79.89",
                "79.37",
                "63.15",
                "93",
                "80.03",
                "78.72",
                "100",
                "78.31",
                "71.11",
                "68.72",
                "69.4",
                "91.28",
                "92.62",
                "94.79",
                "86.33",
                "94.68",
                "79.28",
                "67.69",
                "79.84",
                "92.02",
                "72.84",
                "96.02",
                "79.06",
                "62.25",
                "49.32",
                "59.58",
                "69.08",
                "73.01",
                "62.18",
                "80.01",
                "73.76",
                "77.84",
                "61.66",
                "78.48",
                "78.7",
                "55.99",
                "62.71",
                "64.73",
                "61.89",
                "63.27",
                "64.98",
                "62.5",
                "61.81",
                "58.64",
                "61.82",
                "62.42",
                "62.66",
                "63.61",
                "64.22",
                "67.59",
                "78.86",
                "62.19",
                "62.66",
                "79.7",
                "60.86",
                "62.68",
                "64.64",
                "71.22",
                "63.34",
                "79.38",
                "67.77",
                "68.5",
                "51.23",
                "80.73",
                "52.13",
                "79.27",
                "53.05",
                "57.68",
                "69.59",
                "49.88",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "design variable(Model.Quadratic1.a)"
            ],
            "order": 6,
            "name": "G"
        },
        {
            "uid": "e596e6",
            "data": [
                "asdg",
                "5.456",
                "1.857",
                "8.922",
                "4.711",
                "1",
                "10",
                "9.917",
                "1",
                "1.737",
                "1.788",
                "5.765",
                "1",
                "8.832",
                "4.059",
                "8.861",
                "3.775",
                "5.422",
                "3.628",
                "1",
                "5.413",
                "1.702",
                "2.313",
                "9.35",
                "9.337",
                "9.416",
                "1.547",
                "4.022",
                "4.113",
                "9.382",
                "8.175",
                "1",
                "8.339",
                "9.406",
                "8.536",
                "1.141",
                "8.341",
                "1.24",
                "2.945",
                "1",
                "10",
                "4.999",
                "1.884",
                "2.463",
                "4.243",
                "8.472",
                "2.729",
                "9.243",
                "5.039",
                "10",
                "4.292",
                "8.478",
                "1",
                "8.543",
                "1.738",
                "2.154",
                "4.151",
                "1",
                "8.383",
                "4.113",
                "8.179",
                "1",
                "2.497",
                "8.395",
                "1",
                "1",
                "3.177",
                "1",
                "1.011",
                "1.843",
                "1",
                "1",
                "3.258",
                "1.011",
                "1",
                "1",
                "1",
                "9.611",
                "3.077",
                "8.282",
                "1",
                "1",
                "8.226",
                "2.637",
                "1",
                "9.606",
                "8.339",
                "1",
                "8.286",
                "1.684",
                "1",
                "7.673",
                "8.624",
                "7.673",
                "1",
                "5.5",
                "1",
                "1",
                "1.102",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "asdg",
                "5.456"
            ],
            "order": 7,
            "name": "H"
        },
        {
            "uid": "d4c8ce",
            "data": [
                "asdg*1.5",
                "10.912",
                "3.714",
                "17.844",
                "9.422",
                "2",
                "20",
                "19.834",
                "2",
                "3.474",
                "3.576",
                "11.53",
                "2",
                "17.664",
                "8.118",
                "17.722",
                "7.55",
                "10.844",
                "7.256",
                "2",
                "10.826",
                "3.404",
                "4.626",
                "18.7",
                "18.674",
                "18.832",
                "3.094",
                "8.044",
                "8.226",
                "18.764",
                "16.35",
                "2",
                "16.678",
                "18.812",
                "17.072",
                "2.282",
                "16.682",
                "2.48",
                "5.89",
                "2",
                "20",
                "9.998",
                "3.768",
                "4.926",
                "8.486",
                "16.944",
                "5.458",
                "18.486",
                "10.078",
                "20",
                "8.584",
                "16.956",
                "2",
                "17.086",
                "3.476",
                "4.308",
                "8.302",
                "2",
                "16.766",
                "8.226",
                "16.358",
                "2",
                "4.994",
                "16.79",
                "2",
                "2",
                "6.354",
                "2",
                "2.022",
                "3.686",
                "2",
                "2",
                "6.516",
                "2.022",
                "2",
                "2",
                "2",
                "19.222",
                "6.154",
                "16.564",
                "2",
                "2",
                "16.452",
                "5.274",
                "2",
                "19.212",
                "16.678",
                "2",
                "16.572",
                "3.368",
                "2",
                "15.346",
                "17.248",
                "15.346",
                "2",
                "11",
                "2",
                "2",
                "2.204",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "asdg*1.5",
                "10.912",
                "3.714"
            ],
            "order": 8,
            "name": "I"
        },
        {
            "uid": "48b76d",
            "data": [
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                ""
            ],
            "order": 9,
            "name": "J"
        },
        {
            "uid": "6b4e92",
            "data": [
                "objective(Model.Quadratic.y)",
                "3248.32",
                "411663.6401",
                "3231.13375",
                "3216.84",
                "3126.87622",
                "3599.64595",
                "3341.59",
                "3242.79",
                "3212.6",
                "93116.61893",
                "3307.327855",
                "97075.19275",
                "9655.609364",
                "3251.64",
                "3265.02",
                "3781.513412",
                "3126.87622",
                "92512.66693",
                "3448.89",
                "427643.5427",
                "18006.2008",
                "3676.32117",
                "3181.558613",
                "17418.14485",
                "36090.15816",
                "92684.02613",
                "5649.21",
                "275219.6712",
                "3323.098772",
                "435445.7955",
                "17555.7518",
                "3160.35",
                "3173.392505",
                "3291.54335",
                "4579.93",
                "40797.53479",
                "103415.73",
                "270263.7747",
                "4877.24",
                "421627.2479",
                "153952.3668",
                "271112.7442",
                "304787.7796",
                "3354.332352",
                "3161.08",
                "64547.67",
                "110665.6088",
                "155556.3783",
                "406108.7253",
                "430841.0082",
                "99801.61974",
                "2959.37",
                "15927.08892",
                "4008.446576",
                "3339.6447",
                "65733.08438",
                "71932.97792",
                "62041.73127",
                "4598.27",
                "3201.7685",
                "4613.56",
                "4709.8775",
                "3124.564988",
                "3354.143636",
                "3879.28",
                "70989.14173",
                "15533.235",
                "15206.82531",
                "29630.8408",
                "3841.510583",
                "5438.43",
                "3052.19",
                "134295.5916",
                "3237.593296",
                "28262.7515",
                "4560.55508",
                "4558.2412",
                "64013.30419",
                "13655.12628",
                "424206.4868",
                "12307.99786",
                "70624.45868",
                "37690.11904",
                "4317.812972",
                "12104.86554",
                "3050.80756",
                "3826.578064",
                "25136.3452",
                "691353.4674",
                "3227.7",
                "29951.2465",
                "2853.87",
                "3045.559245",
                "233054.1996",
                "131126.2508",
                "36795.4115",
                "26490.3458",
                "431823.4033",
                "2846.9",
                "41014.82132",
                "659601.6032",
                "75520.69651",
                "62736.27552",
                "444659.5729",
                "5155.92",
                "2776.97",
                "14670.00406",
                "672362.7137",
                "535472.2083",
                "3334.809648",
                "3018.0277",
                "29421.3426",
                "2804.22",
                "3568.756795",
                "2855.265512",
                "5183.85",
                "3968.53",
                "690560.8246",
                "35299.22706",
                "454821.4661",
                "439265.1166",
                "2735.88",
                "2804.3",
                "2798.81",
                "3226.251958",
                "281998.937",
                "34605.37576",
                "2670.31",
                "25760.7292",
                "3370.021432",
                "81457.78737",
                "2692.7",
                "10176.57186",
                "2933.0866",
                "2715.18",
                "278865.8756",
                "184949.0791",
                "23894.10483",
                "68744.86584",
                "2880.15",
                "3546.68",
                "701768.9022",
                "54069.30513",
                "676208.9679",
                "22447.20181",
                "181857.241",
                "14979.11277",
                "2596.68",
                "124638.1904",
                "285323.8415",
                "323819.627",
                "663616.5973",
                "692287.6565",
                "23001.02372",
                "3968.615004",
                "707626.7361",
                "84918.27154",
                "2550.6",
                "17798.0617",
                "286075.1039",
                "311323.2744",
                "18435.81866",
                "41900.8444",
                "22339.77016",
                "6430.307892",
                "3840.044648",
                "816851.4",
                "2722.0913",
                "159421.5538",
                "2599.13",
                "382638.9534",
                "822660.99",
                "8606.2",
                "723689.7446",
                "49024.05027",
                "390518.5968",
                "308999.5252",
                "169743.5353",
                "374231.63",
                "407402.3368",
                "11884.68082",
                "8555.21",
                "245068.2701",
                "724141.2485",
                "398295.7152",
                "10364.05576",
                "7039.586176",
                "9904.74784",
                "722672.302",
                "167906.7137",
                "58995.67707",
                "86645.54658",
                "15558.81003",
                "240532.5051",
                "800243.89",
                "398757.8808",
                "566310.3919",
                "739987.6516",
                "1601.86",
                "66605.46603",
                "11716.5608",
                "15922.7018",
                "49327.70153",
                "699671.6809",
                "6934.094261",
                "719456.2712",
                "618454.33",
                "568438.2069",
                "210453.9552",
                "2559.69",
                "104235.8281",
                "572150.9822",
                "81075.63505",
                "710924.6083",
                "118390.9805",
                "18000.75108",
                "221781.5616",
                "692643.3997",
                "734274.6863",
                "558772.2922",
                "402885.7864",
                "77179.13596",
                "170225.9064",
                "725550.0025",
                "47416.59059",
                "21663.99204",
                "207828.0623",
                "111386.6102",
                "62155.55504",
                "1736.47",
                "38749.18819",
                "205118.2713",
                "171342.6529",
                "41420.22313",
                "183110.2503",
                "75822.40572",
                "523311.6097",
                "1896.44",
                "203082.9779",
                "23795.95805",
                "27087.1838",
                "1596.13",
                "72422.01166",
                "775961.7144",
                "257515.72",
                "1600.18",
                "76849.36722",
                "194517.46",
                "178365.1764",
                "25503.73829",
                "208113.5414",
                "208113.5414",
                "objective(Model.Quadratic.y)"
            ],
            "order": 10,
            "name": "K"
        },
        {
            "uid": "ab409a",
            "data": [
                "objective(Model.Quadratic1.y)",
                "527582389.4",
                "1.09255E+13",
                "527443413.8",
                "508506864.9",
                "498061585.2",
                "632845504.8",
                "544356748.3",
                "519162709.2",
                "504896687.9",
                "3.8021E+11",
                "547142952.7",
                "4.07759E+11",
                "4271844554",
                "508572377",
                "520974843.2",
                "713279984.5",
                "498061585.2",
                "3.69218E+11",
                "549545160",
                "1.20645E+13",
                "16311690576",
                "651037476.2",
                "525250117.7",
                "14923858578",
                "59784763875",
                "3.59419E+11",
                "2220871238",
                "6.08012E+12",
                "537796714.4",
                "1.22926E+13",
                "12010743852",
                "502589866.4",
                "519737549.1",
                "561867892",
                "1209886348",
                "76464361315",
                "5.6736E+11",
                "5.83829E+12",
                "1885637626",
                "1.17026E+13",
                "1.23555E+12",
                "5.93162E+12",
                "7.49946E+12",
                "576307516.3",
                "511915184.3",
                "1.58032E+11",
                "6.45411E+11",
                "1.23965E+12",
                "1.09592E+13",
                "1.19059E+13",
                "4.01801E+11",
                "449194152.5",
                "12851047620",
                "812223410.3",
                "571383144.6",
                "1.57408E+11",
                "2.07647E+11",
                "1.44729E+11",
                "1448374557",
                "526921128.3",
                "1006143532",
                "1134662401",
                "496446913.2",
                "582880336.6",
                "606772032.3",
                "1.85402E+11",
                "10667065766",
                "11856076381",
                "31168558431",
                "742438752.6",
                "1577025531",
                "476136850.8",
                "9.59118E+11",
                "523474834.5",
                "31328302321",
                "816144082.5",
                "866221152.9",
                "1.46001E+11",
                "9172102743",
                "1.14917E+13",
                "10266273505",
                "1.81307E+11",
                "81695584853",
                "967415992.6",
                "7064115879",
                "482127757.4",
                "563308483.3",
                "25027043155",
                "3.79412E+13",
                "525281172.1",
                "33344388245",
                "416109138.3",
                "478058765.2",
                "7.85384E+11",
                "1.0889E+12",
                "76265353774",
                "40693837495",
                "1.20498E+13",
                "513363387.8",
                "96172305009",
                "3.0986E+13",
                "1.81938E+11",
                "1.98839E+11",
                "1.27808E+13",
                "1568432308",
                "483363507",
                "13097635577",
                "3.60301E+13",
                "1.41645E+13",
                "573066166",
                "468817060",
                "13616159669",
                "492739101.2",
                "639734107.6",
                "483448545.1",
                "1608849834",
                "979448604.7",
                "3.76063E+13",
                "84219570083",
                "1.32847E+13",
                "1.11778E+13",
                "476126090.5",
                "492767215.7",
                "488959720.3",
                "643469165.1",
                "1.46641E+12",
                "70223312948",
                "440742305.5",
                "45258580281",
                "568309874.4",
                "3.56651E+11",
                "453167273.3",
                "6729508893",
                "544314553.5",
                "456268323.7",
                "1.35858E+12",
                "1.34841E+12",
                "39091480879",
                "3.05905E+11",
                "520198887",
                "704298342.5",
                "3.87581E+13",
                "2.29436E+11",
                "3.54238E+13",
                "36420242539",
                "1.32123E+12",
                "12084788887",
                "415760378.1",
                "4.01727E+11",
                "1.42711E+12",
                "1.04859E+12",
                "3.42797E+13",
                "2.48497E+13",
                "39022536513",
                "950668237.4",
                "4.00639E+13",
                "4.62665E+11",
                "404518293.8",
                "18356897256",
                "1.34625E+12",
                "3.23332E+12",
                "19301770102",
                "74581360639",
                "36436782145",
                "2856385651",
                "878567117.9",
                "3.87537E+13",
                "454740984.9",
                "1.25348E+12",
                "420531027.2",
                "7.16982E+12",
                "3.84609E+13",
                "4009978577",
                "4.14058E+13",
                "1.78041E+11",
                "7.54289E+12",
                "5.51497E+12",
                "2.76661E+12",
                "1.02012E+13",
                "8.33369E+12",
                "9072219220",
                "3954551684",
                "5.52658E+12",
                "4.11796E+13",
                "1.26658E+13",
                "7270840456",
                "4807412630",
                "2329980612",
                "4.14044E+13",
                "2.66928E+12",
                "3.00471E+11",
                "1.26426E+11",
                "22946453592",
                "5.35861E+12",
                "5.84548E+13",
                "1.26618E+13",
                "2.53648E+13",
                "4.28921E+13",
                "178078910.8",
                "3.04862E+11",
                "9761835860",
                "18150402782",
                "1.78185E+11",
                "3.83359E+13",
                "4808173256",
                "4.07468E+13",
                "2.58369E+13",
                "2.58595E+13",
                "4.11905E+12",
                "413762174.1",
                "8.62364E+11",
                "2.61525E+13",
                "4.83726E+11",
                "3.99681E+13",
                "1.13687E+12",
                "23705836204",
                "3.84053E+12",
                "3.77951E+13",
                "4.67074E+13",
                "2.54496E+13",
                "1.22566E+13",
                "4.30187E+11",
                "2.35495E+12",
                "4.57146E+13",
                "1.85982E+11",
                "34772574003",
                "3.54308E+12",
                "2.4876E+11",
                "98360011704",
                "211677766.3",
                "1.37027E+11",
                "3.41889E+12",
                "2.1091E+12",
                "1.5813E+11",
                "2.93583E+12",
                "4.17495E+11",
                "2.06459E+13",
                "251647929.1",
                "3.28581E+12",
                "42293058491",
                "64449598929",
                "175176702.1",
                "1.55618E+11",
                "5.52261E+13",
                "6.09893E+12",
                "177833605.6",
                "4.59178E+11",
                "3.27744E+12",
                "2.75224E+12",
                "48438341962",
                "3.57015E+12",
                "3.57015E+12",
                "objective(Model.Quadratic1.y)"
            ],
            "order": 11,
            "name": "L"
        },
        {
            "uid": "7174d6",
            "data": [
                "design variable(Model.Quadratic.x)",
                "10",
                "93.64",
                "10.25",
                "10",
                "10.02",
                "10.65",
                "10",
                "10",
                "10",
                "34.11",
                "10.27",
                "34.61",
                "11.58",
                "10",
                "10",
                "11.02",
                "10.02",
                "34.14",
                "10",
                "94.86",
                "23.41",
                "10.77",
                "10.01",
                "23.23",
                "31.96",
                "34.08",
                "10",
                "84.19",
                "10.01",
                "95.11",
                "14.95",
                "10",
                "10.01",
                "10.15",
                "10",
                "33.79",
                "55",
                "83.47",
                "10",
                "93.79",
                "76.73",
                "83.39",
                "86.24",
                "10.62",
                "10",
                "28.5",
                "63.87",
                "76.73",
                "98.88",
                "94.96",
                "56.76",
                "10",
                "13.09",
                "11.84",
                "10.45",
                "28.91",
                "27.69",
                "28.09",
                "10",
                "10.23",
                "10",
                "12.9",
                "10.31",
                "10.58",
                "10",
                "30.39",
                "22.75",
                "12.72",
                "18.47",
                "11.13",
                "11",
                "10",
                "75.48",
                "10.32",
                "16.57",
                "10.78",
                "11.4",
                "28.93",
                "26.97",
                "94.52",
                "16.84",
                "30.35",
                "25.88",
                "12.37",
                "12.62",
                "10.11",
                "10.16",
                "15.61",
                "82.86",
                "10",
                "17.07",
                "10",
                "10.11",
                "65.87",
                "44.6",
                "25.7",
                "22.61",
                "94.67",
                "10",
                "26.71",
                "83.39",
                "49.08",
                "41.37",
                "96.06",
                "10",
                "10",
                "26.37",
                "82.26",
                "80.38",
                "10.64",
                "10.1",
                "17.1",
                "10",
                "10.91",
                "10.19",
                "10",
                "10",
                "82.82",
                "30.77",
                "96.11",
                "99.88",
                "10",
                "10",
                "10",
                "10.11",
                "93.68",
                "32.58",
                "10",
                "23.9",
                "10.58",
                "64.18",
                "10",
                "18.43",
                "10.11",
                "10",
                "93.98",
                "84.15",
                "23.26",
                "31.77",
                "10",
                "10",
                "83.95",
                "24.97",
                "82.01",
                "41.42",
                "83.76",
                "19.48",
                "10",
                "70.26",
                "94.71",
                "99.52",
                "81.79",
                "83.05",
                "41.13",
                "17.39",
                "83.83",
                "49.24",
                "10",
                "37.58",
                "95.55",
                "98.92",
                "36.92",
                "21.89",
                "41.51",
                "21.54",
                "17.38",
                "100",
                "10.22",
                "85.43",
                "10",
                "75.33",
                "100",
                "10",
                "84.78",
                "29.79",
                "76.27",
                "80.09",
                "42.92",
                "100",
                "76.92",
                "18.22",
                "10",
                "50.39",
                "84.81",
                "92.43",
                "27.29",
                "13.16",
                "25.08",
                "84.72",
                "42.43",
                "24.63",
                "35.34",
                "18.84",
                "49.99",
                "100",
                "92.55",
                "93.54",
                "86.05",
                "10",
                "29.45",
                "12.4",
                "14.62",
                "24.23",
                "83.41",
                "11.41",
                "85.36",
                "100",
                "94.06",
                "83.39",
                "10",
                "81.75",
                "93.82",
                "41.13",
                "84.79",
                "40.22",
                "15.47",
                "51.99",
                "83.87",
                "94.16",
                "93.37",
                "73.59",
                "40.59",
                "51.72",
                "93.5",
                "23.13",
                "17.02",
                "54.13",
                "64.16",
                "38.44",
                "10",
                "36.28",
                "54.22",
                "44.55",
                "37.75",
                "88.61",
                "40.59",
                "88.32",
                "10",
                "57.65",
                "17.88",
                "17.37",
                "10",
                "28.37",
                "99.17",
                "100",
                "10",
                "47.11",
                "89.22",
                "73.54",
                "18.57",
                "54.56",
                "54.56",
                "design variable(Model.Quadratic.x)"
            ],
            "order": 12,
            "name": "M"
        },
        {
            "uid": "cb9e5a",
            "data": [
                "design variable(Model.Quadratic.a)",
                "26.76",
                "46.3",
                "25.22",
                "26.43",
                "25.55",
                "26.42",
                "27.73",
                "26.7",
                "26.36",
                "77.3",
                "25.95",
                "78.31",
                "67.01",
                "26.71",
                "26.97",
                "26.03",
                "25.55",
                "76.67",
                "27.34",
                "46.87",
                "30.37",
                "26.3",
                "26.13",
                "29.74",
                "33.35",
                "77.02",
                "49.15",
                "38.08",
                "26.72",
                "47.49",
                "71.92",
                "25.91",
                "26.05",
                "26.46",
                "40.2",
                "33.85",
                "33.04",
                "38.04",
                "41.75",
                "47.27",
                "25.09",
                "38.22",
                "40.25",
                "24.58",
                "25.97",
                "77.58",
                "26.46",
                "25.34",
                "41.31",
                "47.11",
                "30.69",
                "24.11",
                "91.36",
                "23.96",
                "25.28",
                "76.75",
                "91.79",
                "76.7",
                "40.08",
                "25",
                "39.64",
                "24.25",
                "24.08",
                "24.49",
                "33.28",
                "75.06",
                "27.56",
                "92.43",
                "84.56",
                "26.07",
                "38.92",
                "24.84",
                "22.75",
                "25.04",
                "100",
                "34.2",
                "30.42",
                "74.59",
                "16.76",
                "46.83",
                "38.76",
                "74.83",
                "53.85",
                "23.88",
                "71.94",
                "24.6",
                "31.69",
                "100",
                "100",
                "26.69",
                "100",
                "23.38",
                "24.45",
                "53.2",
                "64.73",
                "53.25",
                "49.38",
                "47.54",
                "22.65",
                "55.15",
                "94.53",
                "30.58",
                "35.22",
                "47.57",
                "46",
                "21.93",
                "18.98",
                "98.67",
                "82.15",
                "24.38",
                "24.17",
                "95.06",
                "22.21",
                "24.95",
                "21.92",
                "46.28",
                "33.92",
                "100",
                "35.4",
                "48.62",
                "43.4",
                "21.47",
                "22.21",
                "22.04",
                "25.98",
                "31.92",
                "30.51",
                "20.89",
                "43.82",
                "24.88",
                "18.82",
                "21.19",
                "27.36",
                "23",
                "21.3",
                "31.38",
                "25.78",
                "42.82",
                "66.29",
                "22.92",
                "27.01",
                "98.88",
                "84.48",
                "99.84",
                "11.72",
                "25.58",
                "37.92",
                "20.14",
                "24.95",
                "31.63",
                "32.52",
                "98.48",
                "100",
                "12.22",
                "11.24",
                "100",
                "33.86",
                "19.55",
                "11.14",
                "31.16",
                "31.57",
                "12.04",
                "84.38",
                "11.61",
                "11.87",
                "10.92",
                "81.22",
                "20.25",
                "21.36",
                "20.12",
                "66.67",
                "81.81",
                "81.37",
                "100",
                "53.31",
                "66.4",
                "47.49",
                "91.33",
                "36.86",
                "68.12",
                "32.74",
                "80.83",
                "95.65",
                "100",
                "46",
                "11.21",
                "37.21",
                "14.6",
                "100",
                "92.46",
                "94.88",
                "66.64",
                "41.47",
                "95.37",
                "79.5",
                "45.93",
                "64.11",
                "99.24",
                "10",
                "75.41",
                "72.58",
                "71.41",
                "82.01",
                "99.87",
                "48.81",
                "98.04",
                "61.27",
                "63.65",
                "29.09",
                "19.75",
                "14.89",
                "64.4",
                "46.34",
                "98.2",
                "71.23",
                "72.31",
                "81.03",
                "97.75",
                "82.26",
                "63.48",
                "73.66",
                "45.23",
                "62.24",
                "82.41",
                "86.39",
                "72.09",
                "70.11",
                "26.6",
                "40.65",
                "11.4",
                "27.88",
                "68.94",
                "85.15",
                "27.57",
                "22.7",
                "44.41",
                "66.45",
                "12.85",
                "60.15",
                "71.92",
                "87.16",
                "10",
                "89.27",
                "78.37",
                "25.24",
                "10",
                "33.58",
                "23.81",
                "32.36",
                "71.59",
                "69.09",
                "69.09",
                "design variable(Model.Quadratic.a)"
            ],
            "order": 13,
            "name": "N"
        },
        {
            "uid": "e1bb83",
            "data": [
                "design variable(Model.Quadratic.b)",
                "50.86",
                "60.24",
                "50.51",
                "51.07",
                "49.8",
                "50.79",
                "50.52",
                "50.9",
                "51.19",
                "92.36",
                "49.43",
                "93.68",
                "55.62",
                "51.62",
                "50.43",
                "50.49",
                "49.8",
                "91.47",
                "63.75",
                "61.6",
                "56.14",
                "52.27",
                "50",
                "56.88",
                "62.73",
                "93.93",
                "68.77",
                "62.91",
                "58.21",
                "61.09",
                "94.16",
                "50.64",
                "49.99",
                "49.52",
                "49.25",
                "63",
                "62.75",
                "62.47",
                "67.45",
                "61.51",
                "80.63",
                "63.79",
                "62.88",
                "48.89",
                "50.12",
                "53.39",
                "41.8",
                "82.34",
                "21.7",
                "63.03",
                "16.04",
                "48.69",
                "17.85",
                "49.44",
                "49.39",
                "54.47",
                "55.77",
                "53.8",
                "57.45",
                "51.2",
                "61.86",
                "47.35",
                "48.79",
                "52.14",
                "51.02",
                "54.49",
                "55.35",
                "16.61",
                "40.29",
                "49.46",
                "60.62",
                "50.69",
                "61.25",
                "49.26",
                "45.95",
                "50.51",
                "49.97",
                "54.37",
                "53.92",
                "61.16",
                "75.75",
                "55.52",
                "62.02",
                "48.62",
                "46.83",
                "47.09",
                "49.68",
                "46.32",
                "57.09",
                "49.75",
                "44.95",
                "45.58",
                "47.94",
                "32.75",
                "52.04",
                "62.57",
                "54.43",
                "60.26",
                "52.94",
                "61.82",
                "26.7",
                "35.92",
                "58.43",
                "58.92",
                "49.37",
                "53.29",
                "53.65",
                "56.48",
                "57.91",
                "48.39",
                "48.56",
                "89.18",
                "53.2",
                "49.27",
                "51.78",
                "49.46",
                "51.85",
                "55.53",
                "55.92",
                "58.94",
                "62.57",
                "53.76",
                "53.21",
                "54.42",
                "51.56",
                "19.67",
                "66.45",
                "53",
                "28.43",
                "49.61",
                "60.36",
                "52.15",
                "45.14",
                "52.53",
                "53.47",
                "17.91",
                "28.22",
                "29.05",
                "56.27",
                "53.74",
                "81.09",
                "57.86",
                "54.03",
                "57.03",
                "55.28",
                "28.32",
                "28.74",
                "53.25",
                "20.63",
                "16.64",
                "16.97",
                "58.45",
                "30.53",
                "55.4",
                "30.7",
                "57.67",
                "56.35",
                "54.49",
                "53.63",
                "16.36",
                "24.11",
                "53.52",
                "64.34",
                "55.02",
                "40.75",
                "29.03",
                "46.18",
                "54.46",
                "40.81",
                "53.63",
                "56.6",
                "45.27",
                "44.21",
                "57.57",
                "56.07",
                "55.26",
                "54.05",
                "34.61",
                "55.83",
                "56.01",
                "53.07",
                "44.6",
                "43.03",
                "56.85",
                "56.86",
                "71.36",
                "42.75",
                "27.43",
                "57.6",
                "33.82",
                "56.6",
                "95.65",
                "42.9",
                "43.44",
                "51.92",
                "57.22",
                "56.85",
                "59.39",
                "55.26",
                "37.81",
                "43.05",
                "43.41",
                "47.36",
                "57.66",
                "47.91",
                "59.27",
                "57.12",
                "55.93",
                "97.6",
                "53.29",
                "57.21",
                "55.88",
                "64.75",
                "57.63",
                "77.75",
                "43.44",
                "52.53",
                "59.71",
                "52.06",
                "56.86",
                "53.7",
                "65.06",
                "71.73",
                "54.06",
                "50.68",
                "44.6",
                "44.1",
                "28.82",
                "53.43",
                "54.64",
                "55.47",
                "44.91",
                "51.1",
                "55.44",
                "54.56",
                "64.94",
                "55.66",
                "56.19",
                "54.23",
                "43.61",
                "44.24",
                "54.71",
                "19.26",
                "52.09",
                "50.69",
                "55.03",
                "48.67",
                "55.4",
                "45.07",
                "42.67",
                "44.61",
                "44.61",
                "design variable(Model.Quadratic.b)"
            ],
            "order": 14,
            "name": "O"
        },
        {
            "uid": "7b8042",
            "data": [
                "design variable(Model.Quadratic.c)",
                "63.72",
                "43.55",
                "63.73",
                "63.14",
                "62.65",
                "62.11",
                "63.39",
                "63.79",
                "64.7",
                "28.28",
                "62.66",
                "29.13",
                "25.73",
                "64.44",
                "63.72",
                "64.02",
                "62.65",
                "27.96",
                "77.39",
                "44.24",
                "48.35",
                "62.76",
                "62.83",
                "48.14",
                "20.23",
                "28.29",
                "46.51",
                "13.91",
                "63.07",
                "45.16",
                "73.76",
                "62.95",
                "62.78",
                "62.94",
                "67.43",
                "20.05",
                "18.48",
                "15.56",
                "27.74",
                "44.64",
                "48.43",
                "15.54",
                "12.17",
                "62.88",
                "62.88",
                "11.7",
                "55.53",
                "49.36",
                "64.65",
                "45.89",
                "17.29",
                "61.47",
                "39.07",
                "64.23",
                "62.88",
                "11.62",
                "10",
                "10.5",
                "15.77",
                "61.67",
                "30.96",
                "63.62",
                "61.93",
                "61.18",
                "41.08",
                "11.37",
                "10",
                "40.52",
                "39.81",
                "61.55",
                "62.29",
                "61.29",
                "60.45",
                "62.41",
                "44.87",
                "41.73",
                "35.2",
                "12.66",
                "10",
                "45",
                "40.59",
                "11.83",
                "17.69",
                "62.34",
                "56.39",
                "60.31",
                "50.61",
                "46.08",
                "45.03",
                "61.2",
                "45.46",
                "60.07",
                "61.8",
                "69.77",
                "46.94",
                "16.27",
                "16.03",
                "45.67",
                "52.5",
                "18.27",
                "23.67",
                "95.22",
                "40.81",
                "46.42",
                "62.22",
                "51.07",
                "57",
                "45.63",
                "50.82",
                "59.89",
                "61.99",
                "99.87",
                "51.22",
                "61.47",
                "51.54",
                "61.25",
                "58.03",
                "46.59",
                "62.1",
                "47.38",
                "56.6",
                "51.28",
                "51.2",
                "50.61",
                "49.51",
                "28.17",
                "55.4",
                "51.31",
                "50.83",
                "60.17",
                "62.94",
                "52.2",
                "51.41",
                "51.13",
                "50.48",
                "26.99",
                "20.45",
                "51.6",
                "48.49",
                "50.75",
                "34.78",
                "44.62",
                "46.82",
                "44.03",
                "50.48",
                "22.59",
                "29.74",
                "50.18",
                "23.86",
                "27.27",
                "45.2",
                "43.76",
                "21.89",
                "50.13",
                "35.63",
                "45.37",
                "47.4",
                "50.7",
                "50.11",
                "27.26",
                "20.61",
                "48.3",
                "59.9",
                "50.93",
                "45.21",
                "36.96",
                "33.4",
                "50.43",
                "43.79",
                "50.83",
                "49.1",
                "33.99",
                "27.1",
                "44.12",
                "44.08",
                "47.62",
                "50.42",
                "16.67",
                "48.63",
                "49.37",
                "49.1",
                "26.21",
                "30.09",
                "46.19",
                "48.12",
                "68.06",
                "32.76",
                "33.31",
                "44.59",
                "15.54",
                "43.91",
                "37.54",
                "30.98",
                "31.3",
                "51.89",
                "48.64",
                "47.35",
                "44.39",
                "49.26",
                "88.68",
                "22.84",
                "24.56",
                "32.68",
                "43.89",
                "32.96",
                "45.23",
                "42.33",
                "47.83",
                "26.37",
                "51.79",
                "48.11",
                "47.13",
                "20.16",
                "44.57",
                "38.78",
                "23.44",
                "29.67",
                "44.73",
                "46.87",
                "47.37",
                "29.15",
                "19.75",
                "26.62",
                "46.57",
                "25.98",
                "21.84",
                "14.64",
                "38.47",
                "35.9",
                "50.07",
                "40.01",
                "12.86",
                "68.73",
                "38.39",
                "41.37",
                "18.88",
                "57.65",
                "49.54",
                "46.74",
                "23.79",
                "21.09",
                "49.03",
                "26.03",
                "51.38",
                "46.72",
                "49.88",
                "30.68",
                "42.11",
                "43.59",
                "23.91",
                "12.95",
                "12.95",
                "design variable(Model.Quadratic.c)"
            ],
            "order": 15,
            "name": "P"
        },
        {
            "uid": "29065f",
            "data": [
                "design variable(Model.Quadratic1.a)",
                "50",
                "64.47",
                "50.52",
                "49.14",
                "50.94",
                "48.84",
                "48.75",
                "49.37",
                "48.92",
                "43.85",
                "50.02",
                "43.27",
                "45.82",
                "48.1",
                "48.87",
                "49.88",
                "50.94",
                "43.14",
                "46.2",
                "65.97",
                "50.31",
                "48.17",
                "51.89",
                "49.19",
                "45.9",
                "41.84",
                "69.59",
                "80.27",
                "48.7",
                "64.83",
                "38.97",
                "50.32",
                "51.61",
                "51.86",
                "57.68",
                "45.94",
                "53.05",
                "79.93",
                "79.27",
                "65.83",
                "52.13",
                "80.7",
                "80.73",
                "51.22",
                "51.23",
                "37.93",
                "52.7",
                "51.23",
                "66.45",
                "64.14",
                "40.34",
                "51.29",
                "50.66",
                "50.55",
                "51.23",
                "36.43",
                "40.13",
                "37.6",
                "68.5",
                "51.4",
                "47.27",
                "51.15",
                "50.85",
                "51.81",
                "40.32",
                "36.79",
                "44.21",
                "51.27",
                "35.5",
                "50.31",
                "53.32",
                "51.11",
                "53.18",
                "49.94",
                "39.22",
                "39.24",
                "41.69",
                "35.63",
                "49.19",
                "63.86",
                "67.77",
                "36.35",
                "57.51",
                "51.89",
                "48.21",
                "51.8",
                "38.47",
                "39.61",
                "79.38",
                "50.42",
                "37.17",
                "51.09",
                "51.54",
                "14.46",
                "63.33",
                "56.33",
                "57.99",
                "64.62",
                "63.34",
                "57.17",
                "71.22",
                "31.9",
                "50.52",
                "64.64",
                "59",
                "62.68",
                "60.86",
                "79.7",
                "49.4",
                "51.53",
                "51.47",
                "15.73",
                "62.66",
                "50.23",
                "59.3",
                "59.87",
                "62.19",
                "78.86",
                "67.59",
                "64.22",
                "57.93",
                "63.61",
                "62.66",
                "62.42",
                "61.82",
                "18.44",
                "58.64",
                "61.81",
                "68.2",
                "50.04",
                "53.75",
                "62.5",
                "64.98",
                "63.27",
                "61.89",
                "17.47",
                "39.42",
                "68.47",
                "64.73",
                "62.71",
                "55.99",
                "78.7",
                "78.48",
                "77.47",
                "72.28",
                "39.95",
                "53.86",
                "61.66",
                "25.86",
                "17.53",
                "10",
                "77.84",
                "51.85",
                "73.76",
                "60.36",
                "80.01",
                "64.16",
                "62.18",
                "57.95",
                "16.45",
                "33.36",
                "56.79",
                "42.48",
                "73.01",
                "69.08",
                "59.58",
                "58.08",
                "61.37",
                "49.32",
                "62.25",
                "48.97",
                "56.83",
                "54.14",
                "79.06",
                "74.08",
                "49.46",
                "57.76",
                "96.02",
                "72.84",
                "50.21",
                "64.23",
                "54.03",
                "92.02",
                "78.53",
                "79.84",
                "67.69",
                "97.01",
                "23.75",
                "79.28",
                "94.68",
                "86.33",
                "16.84",
                "94.79",
                "92.62",
                "91.28",
                "79.63",
                "79.09",
                "78.33",
                "69.4",
                "68.72",
                "71.11",
                "71.59",
                "73.23",
                "78.31",
                "100",
                "78.72",
                "67.55",
                "80.03",
                "93",
                "63.15",
                "79.37",
                "79.89",
                "73.59",
                "79.08",
                "81.11",
                "73.16",
                "78.08",
                "78.78",
                "86.63",
                "81.51",
                "75.51",
                "72.22",
                "81.27",
                "86.84",
                "82.72",
                "74.09",
                "82.03",
                "20.05",
                "25.46",
                "70.2",
                "91.26",
                "81.26",
                "71.84",
                "92.17",
                "87.56",
                "72.62",
                "75.39",
                "69.97",
                "79.67",
                "74.69",
                "87.84",
                "68.76",
                "29.67",
                "91.72",
                "91.97",
                "69.45",
                "77.75",
                "86.62",
                "86.51",
                "74.47",
                "82.43",
                "82.43",
                "design variable(Model.Quadratic1.a)"
            ],
            "order": 16,
            "name": "Q"
        },
        {
            "uid": "d709ce",
            "data": [
                "asdg",
                "1",
                "9.364",
                "1.025",
                "1",
                "1.002",
                "1.065",
                "1",
                "1",
                "1",
                "3.411",
                "1.027",
                "3.461",
                "1.158",
                "1",
                "1",
                "1.102",
                "1.002",
                "3.414",
                "1",
                "9.486",
                "2.341",
                "1.077",
                "1.001",
                "2.323",
                "3.196",
                "3.408",
                "1",
                "8.419",
                "1.001",
                "9.511",
                "1.495",
                "1",
                "1.001",
                "1.015",
                "1",
                "3.379",
                "5.5",
                "8.347",
                "1",
                "9.379",
                "7.673",
                "8.339",
                "8.624",
                "1.062",
                "1",
                "2.85",
                "6.387",
                "7.673",
                "9.888",
                "9.496",
                "5.676",
                "1",
                "1.309",
                "1.184",
                "1.045",
                "2.891",
                "2.769",
                "2.809",
                "1",
                "1.023",
                "1",
                "1.29",
                "1.031",
                "1.058",
                "1",
                "3.039",
                "2.275",
                "1.272",
                "1.847",
                "1.113",
                "1.1",
                "1",
                "7.548",
                "1.032",
                "1.657",
                "1.078",
                "1.14",
                "2.893",
                "2.697",
                "9.452",
                "1.684",
                "3.035",
                "2.588",
                "1.237",
                "1.262",
                "1.011",
                "1.016",
                "1.561",
                "8.286",
                "1",
                "1.707",
                "1",
                "1.011",
                "6.587",
                "4.46",
                "2.57",
                "2.261",
                "9.467",
                "1",
                "2.671",
                "8.339",
                "4.908",
                "4.137",
                "9.606",
                "1",
                "1",
                "2.637",
                "8.226",
                "8.038",
                "1.064",
                "1.01",
                "1.71",
                "1",
                "1.091",
                "1.019",
                "1",
                "1",
                "8.282",
                "3.077",
                "9.611",
                "9.988",
                "1",
                "1",
                "1",
                "1.011",
                "9.368",
                "3.258",
                "1",
                "2.39",
                "1.058",
                "6.418",
                "1",
                "1.843",
                "1.011",
                "1",
                "9.398",
                "8.415",
                "2.326",
                "3.177",
                "1",
                "1",
                "8.395",
                "2.497",
                "8.201",
                "4.142",
                "8.376",
                "1.948",
                "1",
                "7.026",
                "9.471",
                "9.952",
                "8.179",
                "8.305",
                "4.113",
                "1.739",
                "8.383",
                "4.924",
                "1",
                "3.758",
                "9.555",
                "9.892",
                "3.692",
                "2.189",
                "4.151",
                "2.154",
                "1.738",
                "10",
                "1.022",
                "8.543",
                "1",
                "7.533",
                "10",
                "1",
                "8.478",
                "2.979",
                "7.627",
                "8.009",
                "4.292",
                "10",
                "7.692",
                "1.822",
                "1",
                "5.039",
                "8.481",
                "9.243",
                "2.729",
                "1.316",
                "2.508",
                "8.472",
                "4.243",
                "2.463",
                "3.534",
                "1.884",
                "4.999",
                "10",
                "9.255",
                "9.354",
                "8.605",
                "1",
                "2.945",
                "1.24",
                "1.462",
                "2.423",
                "8.341",
                "1.141",
                "8.536",
                "10",
                "9.406",
                "8.339",
                "1",
                "8.175",
                "9.382",
                "4.113",
                "8.479",
                "4.022",
                "1.547",
                "5.199",
                "8.387",
                "9.416",
                "9.337",
                "7.359",
                "4.059",
                "5.172",
                "9.35",
                "2.313",
                "1.702",
                "5.413",
                "6.416",
                "3.844",
                "1",
                "3.628",
                "5.422",
                "4.455",
                "3.775",
                "8.861",
                "4.059",
                "8.832",
                "1",
                "5.765",
                "1.788",
                "1.737",
                "1",
                "2.837",
                "9.917",
                "10",
                "1",
                "4.711",
                "8.922",
                "7.354",
                "1.857",
                "5.456",
                "5.456",
                "asdg"
            ],
            "order": 17,
            "name": "R"
        },
        {
            "uid": "d58160",
            "data": [
                "asdg*1.5",
                "1.5",
                "14.046",
                "1.5375",
                "1.5",
                "1.503",
                "1.5975",
                "1.5",
                "1.5",
                "1.5",
                "5.1165",
                "1.5405",
                "5.1915",
                "1.737",
                "1.5",
                "1.5",
                "1.653",
                "1.503",
                "5.121",
                "1.5",
                "14.229",
                "3.5115",
                "1.6155",
                "1.5015",
                "3.4845",
                "4.794",
                "5.112",
                "1.5",
                "12.6285",
                "1.5015",
                "14.2665",
                "2.2425",
                "1.5",
                "1.5015",
                "1.5225",
                "1.5",
                "5.0685",
                "8.25",
                "12.5205",
                "1.5",
                "14.0685",
                "11.5095",
                "12.5085",
                "12.936",
                "1.593",
                "1.5",
                "4.275",
                "9.5805",
                "11.5095",
                "14.832",
                "14.244",
                "8.514",
                "1.5",
                "1.9635",
                "1.776",
                "1.5675",
                "4.3365",
                "4.1535",
                "4.2135",
                "1.5",
                "1.5345",
                "1.5",
                "1.935",
                "1.5465",
                "1.587",
                "1.5",
                "4.5585",
                "3.4125",
                "1.908",
                "2.7705",
                "1.6695",
                "1.65",
                "1.5",
                "11.322",
                "1.548",
                "2.4855",
                "1.617",
                "1.71",
                "4.3395",
                "4.0455",
                "14.178",
                "2.526",
                "4.5525",
                "3.882",
                "1.8555",
                "1.893",
                "1.5165",
                "1.524",
                "2.3415",
                "12.429",
                "1.5",
                "2.5605",
                "1.5",
                "1.5165",
                "9.8805",
                "6.69",
                "3.855",
                "3.3915",
                "14.2005",
                "1.5",
                "4.0065",
                "12.5085",
                "7.362",
                "6.2055",
                "14.409",
                "1.5",
                "1.5",
                "3.9555",
                "12.339",
                "12.057",
                "1.596",
                "1.515",
                "2.565",
                "1.5",
                "1.6365",
                "1.5285",
                "1.5",
                "1.5",
                "12.423",
                "4.6155",
                "14.4165",
                "14.982",
                "1.5",
                "1.5",
                "1.5",
                "1.5165",
                "14.052",
                "4.887",
                "1.5",
                "3.585",
                "1.587",
                "9.627",
                "1.5",
                "2.7645",
                "1.5165",
                "1.5",
                "14.097",
                "12.6225",
                "3.489",
                "4.7655",
                "1.5",
                "1.5",
                "12.5925",
                "3.7455",
                "12.3015",
                "6.213",
                "12.564",
                "2.922",
                "1.5",
                "10.539",
                "14.2065",
                "14.928",
                "12.2685",
                "12.4575",
                "6.1695",
                "2.6085",
                "12.5745",
                "7.386",
                "1.5",
                "5.637",
                "14.3325",
                "14.838",
                "5.538",
                "3.2835",
                "6.2265",
                "3.231",
                "2.607",
                "15",
                "1.533",
                "12.8145",
                "1.5",
                "11.2995",
                "15",
                "1.5",
                "12.717",
                "4.4685",
                "11.4405",
                "12.0135",
                "6.438",
                "15",
                "11.538",
                "2.733",
                "1.5",
                "7.5585",
                "12.7215",
                "13.8645",
                "4.0935",
                "1.974",
                "3.762",
                "12.708",
                "6.3645",
                "3.6945",
                "5.301",
                "2.826",
                "7.4985",
                "15",
                "13.8825",
                "14.031",
                "12.9075",
                "1.5",
                "4.4175",
                "1.86",
                "2.193",
                "3.6345",
                "12.5115",
                "1.7115",
                "12.804",
                "15",
                "14.109",
                "12.5085",
                "1.5",
                "12.2625",
                "14.073",
                "6.1695",
                "12.7185",
                "6.033",
                "2.3205",
                "7.7985",
                "12.5805",
                "14.124",
                "14.0055",
                "11.0385",
                "6.0885",
                "7.758",
                "14.025",
                "3.4695",
                "2.553",
                "8.1195",
                "9.624",
                "5.766",
                "1.5",
                "5.442",
                "8.133",
                "6.6825",
                "5.6625",
                "13.2915",
                "6.0885",
                "13.248",
                "1.5",
                "8.6475",
                "2.682",
                "2.6055",
                "1.5",
                "4.2555",
                "14.8755",
                "15",
                "1.5",
                "7.0665",
                "13.383",
                "11.031",
                "2.7855",
                "8.184",
                "8.184",
                "asdg*1.5"
            ],
            "order": 18,
            "name": "S"
        }
    ]
}